Renamed InputStreams from in and is to input, so it doesn't look strange in kotlin

This commit is contained in:
2017-11-24 07:37:04 +01:00
parent 8cbdce6eac
commit a5c78fd8cf
25 changed files with 187 additions and 209 deletions

View File

@ -51,7 +51,7 @@ import java.util.*
*/
class WifImporter constructor(
private val ctx: BitmessageContext,
`in`: InputStream,
input: InputStream,
vararg features: Pubkey.Feature
) {
private val identities = LinkedList<BitmessageAddress>()
@ -62,7 +62,7 @@ class WifImporter constructor(
init {
val ini = Ini()
ini.load(`in`)
ini.load(input)
for ((key, section) in ini) {
if (!key.startsWith("BM-"))