Skip to content

Commit

Permalink
remove unnecessary wildcard pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbot16 committed Nov 3, 2022
1 parent 85a7fe3 commit 9102efa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class CompatibilityTransformer {
static Logger LOGGER = LogManager.getLogger(CompatibilityTransformer.class);

private static final AutoHintedMatcher<Expression> sildursWaterFract = new AutoHintedMatcher<>(
"fract(worldpos.y + 0.001)", Matcher.expressionPattern, "___");
"fract(worldpos.y + 0.001)", Matcher.expressionPattern);

private static StorageQualifier getConstQualifier(TypeQualifier qualifier) {
if (qualifier == null) {
Expand Down

0 comments on commit 9102efa

Please sign in to comment.