Use Integer.intValue to explicitly convert to an int
Change-Id: I1135ed01af4e274b26d6b07d1a50f48ef0a30d91
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
if (blockedPositions.get(commit.lane.getPosition())) {
int newPos = -1;
for (Integer pos : freePositions)
- if (!blockedPositions.get(pos)) {
- newPos = pos;
+ if (!blockedPositions.get(pos.intValue())) {
+ newPos = pos.intValue();
break;
}
if (newPos == -1)
Collections.sort(packs, new Comparator<String>() {
public int compare(final String o1, final String o2) {
- return mtimes.get(o2) - mtimes.get(o1);
+ return mtimes.get(o2).intValue()
+ - mtimes.get(o1).intValue();
}
});
} catch (SftpException je) {