We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3168e8 commit 816489dCopy full SHA for 816489d
mtk2garmin-converter/src/main/java/org/hylly/mtk2garmin/StringTable.java
@@ -14,7 +14,7 @@ class StringTable {
14
15
int getStringId(String stringKey) {
16
if (!this.stringTableTranslate.containsKey(stringKey)) {
17
- int newIndex = (int) this.stringTable.size();
+ int newIndex = this.stringTable.size();
18
this.stringTableTranslate.put(stringKey, newIndex);
19
this.stringTable.add(newIndex, stringKey);
20
return newIndex;
0 commit comments