Fixed Flag.Builder#usePanel(boolean) to be public

This commit is contained in:
Florian CUNY 2018-12-23 16:39:31 +01:00
parent 168f9ae8f1
commit 2e5cdc7453

View File

@ -320,7 +320,7 @@ public class Flag implements Comparable<Flag> {
return this;
}
private Builder usePanel(boolean usePanel) {
public Builder usePanel(boolean usePanel) {
this.usePanel = usePanel;
return this;
}