use J8 to join string, fixes #1309
also update README to display build status of correct branch
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# Refined Storage [](https://travis-ci.org/raoulvdberge/refinedstorage) [](https://bintray.com/raoulvdberge/dev/refinedstorage/_latestVersion) [](http://minecraft.curseforge.com/projects/refined-storage)
|
||||
# Refined Storage [](https://travis-ci.org/raoulvdberge/refinedstorage) [](https://bintray.com/raoulvdberge/dev/refinedstorage/_latestVersion) [](http://minecraft.curseforge.com/projects/refined-storage)
|
||||
|
||||
An elegant solution to your hoarding problem.
|
||||
|
||||
|
||||
@@ -3,7 +3,6 @@ package com.raoulvdberge.refinedstorage.gui.grid.stack;
|
||||
import com.raoulvdberge.refinedstorage.RSUtils;
|
||||
import com.raoulvdberge.refinedstorage.gui.GuiBase;
|
||||
import io.netty.buffer.ByteBuf;
|
||||
import joptsimple.internal.Strings;
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.client.resources.I18n;
|
||||
import net.minecraft.client.util.ITooltipFlag;
|
||||
@@ -88,7 +87,7 @@ public class GridStackItem implements IGridStack {
|
||||
}
|
||||
}
|
||||
|
||||
return Strings.join(lines, "\n");
|
||||
return lines.stream().collect(Collectors.joining("\n"));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user