erik
01/09/2017, 3:50 PMval identifiers = linkedSetOf<OddIdentifier>()
When I try to use identifiers.add(thing)
within a try
, like so
try {
// some other stuff
identifiers.add(thing)
} catch (e: IllegalArgumentException) {
Log.w("blah", "blah")
}
I'm getting a strange IDE error that's unable to parse the whole block