kourendlibrary: Simplify stream

This commit is contained in:
sdburns1998
2019-07-07 15:19:34 +02:00
parent 6e6af3d1ef
commit 04197f3d6b

View File

@@ -151,7 +151,7 @@ class KourendLibraryPanel extends PluginPanel
}
else
{
e.getValue().setLocation("<html>" + locs.stream().collect(Collectors.joining("<br>")) + "</html>");
e.getValue().setLocation("<html>" + String.join("<br>", locs) + "</html>");
}
}
});