get rid of double bang

This commit is contained in:
Mohamed Zenadi 2017-07-25 17:27:48 +01:00 committed by Mohamed Zenadi
parent 2f75559ac2
commit 7cb474804b

View file

@ -334,9 +334,13 @@ class UserPreference : AppCompatActivity() {
@Throws(IOException::class)
private fun copySshKey(uri: Uri) {
val sshKey = this.contentResolver.openInputStream(uri)
val privateKey = IOUtils.toByteArray(sshKey!!)
FileUtils.writeByteArrayToFile(File(filesDir.toString() + "/.ssh_key"), privateKey)
sshKey.close()
if (sshKey != null) {
val privateKey = IOUtils.toByteArray(sshKey)
FileUtils.writeByteArrayToFile(File(filesDir.toString() + "/.ssh_key"), privateKey)
sshKey.close()
} else {
Toast.makeText(this, "Unable to open the ssh private key, please check that the file exists", Toast.LENGTH_LONG).show()
}
}
// Returns whether the autofill service is enabled