Skip to content

Commit

Permalink
fix: replace isBlank with isEmpty in BlockUtil
Browse files Browse the repository at this point in the history
  • Loading branch information
ROMVoid95 committed Jul 21, 2023
1 parent d7a41a1 commit 66f385d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public Resloc(String resourceName, String meta)

private void setMetaValue(String meta)
{
this.rawInput = meta.isBlank() ? rawInput : rawInput + ":" + meta;
this.rawInput = meta.isEmpty() ? rawInput : rawInput + ":" + meta;
this.meta = (meta.equals("*")) ? OreDictionary.WILDCARD_VALUE : safeParse(meta);
}

Expand Down

0 comments on commit 66f385d

Please sign in to comment.