amanda.hinchman-dominguez
11/13/2018, 7:15 PM[ERROR] StylesheetTest.propertySelectionScope:290->shouldEqual:622 expected:<.label {
[ -fx-base: rgba(255, 0, 0, 1);
}
.label:hover {
-fx-base: rgba(0, 0, 255, 1);
]}> but was:<.label {
[-fx-base: rgba(255, 0, 0, 1);
}
.label:hover {
-fx-base: rgba(0, 0, 255, 1);
]}>
Ruckus
11/13/2018, 7:17 PMString.strip()
extension isn't working.Ruckus
11/13/2018, 7:18 PMamanda.hinchman-dominguez
11/13/2018, 7:18 PMstrip()
? Interesting. I normally use trim()
but I think that's only white space before and afteramanda.hinchman-dominguez
11/13/2018, 7:18 PMRuckus
11/13/2018, 7:19 PMstrip
function that normalizes the whitespace and trims the string.
private fun String.strip() = replace(Regex("\\s+"), " ").trim()
amanda.hinchman-dominguez
11/13/2018, 7:19 PM