diff options
author | SHsuperCM <shsupercm@gmail.com> | 2022-02-16 15:19:07 +0200 |
---|---|---|
committer | SHsuperCM <shsupercm@gmail.com> | 2022-02-16 15:19:07 +0200 |
commit | dd0b7b4b6af463ee0b8e794300a05a10d46a75e4 (patch) | |
tree | 16156fee54d6f36b5408ffabf5a431267bfa9729 /src/main/java/shcm/shsupercm/fabric/citresewn/ex/CITParsingException.java | |
parent | 9b04862bfb974a2b6728d1ddcf8a0c93b7bae1fc (diff) | |
download | CITResewn-dd0b7b4b6af463ee0b8e794300a05a10d46a75e4.tar.gz CITResewn-dd0b7b4b6af463ee0b8e794300a05a10d46a75e4.tar.bz2 CITResewn-dd0b7b4b6af463ee0b8e794300a05a10d46a75e4.zip |
Added partial support for colon separator
Diffstat (limited to 'src/main/java/shcm/shsupercm/fabric/citresewn/ex/CITParsingException.java')
-rw-r--r-- | src/main/java/shcm/shsupercm/fabric/citresewn/ex/CITParsingException.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/shcm/shsupercm/fabric/citresewn/ex/CITParsingException.java b/src/main/java/shcm/shsupercm/fabric/citresewn/ex/CITParsingException.java index 384014b..b3e126f 100644 --- a/src/main/java/shcm/shsupercm/fabric/citresewn/ex/CITParsingException.java +++ b/src/main/java/shcm/shsupercm/fabric/citresewn/ex/CITParsingException.java @@ -8,6 +8,6 @@ public class CITParsingException extends Exception { } public static String descriptionOf(String message, PropertyGroup propertyGroup, int position) { - return message + (position != -1 ? " line " + position : "") + " in " + propertyGroup.identifier.toString() + " from " + propertyGroup.packName; + return message + (position != -1 ? " @L" + position : "") + " in " + propertyGroup.identifier.toString() + " from " + propertyGroup.packName; } } |