Java 5 migration aid

This commit is contained in:
TacoTheDank 2020-05-31 02:28:38 -04:00
parent df8a083ec7
commit 65e46a8ee6
2 changed files with 2 additions and 5 deletions

View File

@ -206,7 +206,7 @@ public class MicroBlogException extends Exception implements TwitterResponse, Ht
try { try {
final String retryAfterStr = httpResponse.getHeader("Retry-After"); final String retryAfterStr = httpResponse.getHeader("Retry-After");
if (retryAfterStr != null) { if (retryAfterStr != null) {
retryAfter = Integer.valueOf(retryAfterStr); retryAfter = Integer.parseInt(retryAfterStr);
} }
} catch (final NumberFormatException ignore) { } catch (final NumberFormatException ignore) {
} }

View File

@ -21,7 +21,6 @@ import java.io.Writer;
import java.security.InvalidParameterException; import java.security.InvalidParameterException;
import java.util.HashMap; import java.util.HashMap;
import java.util.HashSet; import java.util.HashSet;
import java.util.Iterator;
import java.util.Map; import java.util.Map;
/** /**
@ -59,10 +58,8 @@ public class LookupTranslator extends CharSequenceTranslator {
this.prefixSet = new HashSet<>(); this.prefixSet = new HashSet<>();
int currentShortest = Integer.MAX_VALUE; int currentShortest = Integer.MAX_VALUE;
int currentLongest = 0; int currentLongest = 0;
Iterator<Map.Entry<CharSequence, CharSequence>> it = lookupMap.entrySet().iterator();
while (it.hasNext()) { for (Map.Entry<CharSequence, CharSequence> pair : lookupMap.entrySet()) {
Map.Entry<CharSequence, CharSequence> pair = it.next();
this.lookupMap.put(pair.getKey().toString(), pair.getValue().toString()); this.lookupMap.put(pair.getKey().toString(), pair.getValue().toString());
this.prefixSet.add(pair.getKey().charAt(0)); this.prefixSet.add(pair.getKey().charAt(0));
final int sz = pair.getKey().length(); final int sz = pair.getKey().length();