rename getKey to getString

This commit is contained in:
2021-10-16 19:59:30 +02:00
parent 1461d32691
commit bff446f0e3
3 changed files with 4 additions and 4 deletions

View File

@@ -49,7 +49,7 @@ public class StringCompressor {
public String getString(final int integer) {
return usip.getKey(integer);
return usip.getString(integer);
}
public int getIfPresent(final String string) {

View File

@@ -184,7 +184,7 @@ public class UniqueStringIntegerPairs {
return stringToInt.get(string);
}
public String getKey(final int second) {
public String getString(final int second) {
return intToString.get(second);
}