Ruckus
07/26/2017, 8:18 PMdefaultColor0 {
chartLineSymbol {
...
}
}
results in .default-color0 .chart-line-symbol { ... }
(note the space). To make a union of selectors, you need to use and
.thomasnield
07/26/2017, 8:18 PMthomasnield
07/26/2017, 8:19 PMbackingList.asSequence().filter(predicate).toList().forEach
jchildress
07/26/2017, 8:19 PMuser
07/26/2017, 8:19 PMthomasnield
07/26/2017, 8:20 PMtoList()
before turning it into a Sequence
again, it's because I'm dividing the process into stages for a very stateful reason.thomasnield
07/26/2017, 8:22 PMmoveUp{ }
and moveToTopWhere{ }
. You need to observe all the elements first before taking action on them, otherwise your observation and action operations will start to undermine and compete each other.jchildress
07/26/2017, 8:23 PMtieskedh
07/26/2017, 8:27 PMedvin
07/26/2017, 8:36 PMedvin
07/26/2017, 8:37 PMnimakro
07/26/2017, 8:55 PMcarlw
07/27/2017, 12:24 AMcarlw
07/27/2017, 12:24 AMthomasnield
07/27/2017, 1:32 AMthomasnield
07/27/2017, 1:36 AMthomasnield
07/27/2017, 1:36 AMthomasnield
07/27/2017, 1:36 AMConcurrentModificationException
because I'm reading and modifying it at the same time.thomasnield
07/27/2017, 1:37 AMtoList()
in the middle resolves everythingthomasnield
07/27/2017, 1:37 AMtoList()
back into a Sequence, but you get the idea.thomasnield
07/27/2017, 1:43 AMConcurrentModificationException
would occur for the TableView
operation too.edvin
07/27/2017, 6:13 AMedvin
07/27/2017, 6:18 AMitemPropertyChangeListener
isn't firing.edvin
07/27/2017, 6:25 AMedvin
07/27/2017, 8:14 AMIMG 7677▾
edvin
07/27/2017, 10:03 AMedvin
07/27/2017, 10:04 AMpim
07/27/2017, 10:09 AM