diff options
| author | Ben Culkin <scorpress@gmail.com> | 2020-07-02 16:07:20 -0400 |
|---|---|---|
| committer | Ben Culkin <scorpress@gmail.com> | 2020-07-02 16:07:20 -0400 |
| commit | a5da46a5ef196c23e604e3cefeecdead9f939f2d (patch) | |
| tree | 226546c6d2352fe883a43e537061b71f233e89f5 | |
| parent | 2f81b826524599859ce4c8bf6164bab83debf662 (diff) | |
Improve output for group names
Improves the output for group names by including their associated
numeric code
| -rw-r--r-- | src/main/java/tlIItools/Affix.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main/java/tlIItools/Affix.java b/src/main/java/tlIItools/Affix.java index ffec66d9..d90c0108 100644 --- a/src/main/java/tlIItools/Affix.java +++ b/src/main/java/tlIItools/Affix.java @@ -363,7 +363,11 @@ public class Affix { } sb.append("Affix Group: "); - sb.append(getAffixGroupName()); + String afxGroupName = getAffixGroupName(); + sb.append(afxGroupName); + sb.append(" (ID: "); + sb.append(afxGroupName.hashCode()); + sb.append(")"); sb.append("\n"); return sb.toString(); |
