Skip to content

Commit 449e341

Browse files
author
Cantor Chron
committed
Rename unsealed channel getter.
1 parent 7be4f52 commit 449e341

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/scala/scala/reactive/IsoSystem.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ object IsoSystem {
258258
* @param name name of the channel
259259
* @return the ivar with the channel registered under the specified name
260260
*/
261-
def igetUnsealed[@spec(Int, Long, Double) T](name: String): Reactive.Ivar[Channel[T]]
261+
def iunsealed[@spec(Int, Long, Double) T](name: String): Reactive.Ivar[Channel[T]]
262262
}
263263

264264
object Channels {
@@ -295,7 +295,7 @@ object IsoSystem {
295295
}
296296
}
297297
def iget[@spec(Int, Long, Double) T](name: String) = getIvar(name, c => c != null)
298-
def igetUnsealed[@spec(Int, Long, Double) T](name: String) = getIvar(name, c => c != null && !c.isSealed)
298+
def iunsealed[@spec(Int, Long, Double) T](name: String) = getIvar(name, c => c != null && !c.isSealed)
299299
}
300300

301301
}

0 commit comments

Comments
 (0)