Skip to content

Commit 7354643

Browse files
fix: resolve typo in message (#157)
there was a typo in the message when a mapping for a method wasn't found. this fixes it.
1 parent 7e90249 commit 7354643

File tree

1 file changed

+2
-2
lines changed
  • src/main/java/net/fabricmc/tinyremapper/extension/mixin/common/data

1 file changed

+2
-2
lines changed

src/main/java/net/fabricmc/tinyremapper/extension/mixin/common/data/Message.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public final class Message {
2222
public static final String CANNOT_RESOLVE_CLASS = "Cannot resolve class %s";
2323
public static final String CONFLICT_MAPPING = "Conflict mapping detected, %s -> %s.";
2424
public static final String MULTIPLE_MAPPING_CHOICES = "Multiple conflicting mapping choices found for %s, which can be remapped to %s or %s. Such issues can be resolved by using fully qualified selectors.";
25-
public static final String NO_MAPPING_NON_RECURSIVE = "Cannot remap %s because it does not exists in any of the targets %s";
26-
public static final String NO_MAPPING_RECURSIVE = "Cannot remap %s because it does not exists in any of the targets %s or their parents.";
25+
public static final String NO_MAPPING_NON_RECURSIVE = "Cannot remap %s because it does not exist in any of the targets %s";
26+
public static final String NO_MAPPING_RECURSIVE = "Cannot remap %s because it does not exist in any of the targets %s or their parents.";
2727
public static final String NOT_FULLY_QUALIFIED = "%s is not fully qualified.";
2828
}

0 commit comments

Comments
 (0)