mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
fix compilation
This commit is contained in:
@@ -72,7 +72,9 @@ private class DebugLogConfigureDialog(project: Project, categories: List<Pair<St
|
||||
return myTextArea.text
|
||||
.split(ALL_POSSIBLE_SEPARATORS)
|
||||
.filter { !StringUtil.isEmptyOrSpaces(it) }
|
||||
.map(String::trim)
|
||||
/*
|
||||
.map({String::trim})
|
||||
*/
|
||||
.map {
|
||||
if (it.endsWith(TRACE_SUFFIX, ignoreCase = true)) Pair(it.dropLast(TRACE_SUFFIX.length), DebugLogManager.DebugLogLevel.TRACE)
|
||||
else Pair(it, DebugLogManager.DebugLogLevel.DEBUG)
|
||||
|
||||
Reference in New Issue
Block a user