Replace new Integer() with Integer.valueOf()
Signed-off-by: Tobi Schäfer <interface@p3k.org>
This commit is contained in:
parent
a68c478dd5
commit
8ffb7b0b08
5 changed files with 77 additions and 77 deletions
|
@ -100,7 +100,7 @@ public final class JSAdapter implements Scriptable, Function {
|
|||
public Object get(int index, Scriptable start) {
|
||||
Function func = getAdapteeFunction(GET_PROP);
|
||||
if (func != null) {
|
||||
return call(func, new Object[] { new Integer(index) });
|
||||
return call(func, new Object[] { Integer.valueOf(index) });
|
||||
} else {
|
||||
start = getAdaptee();
|
||||
return start.get(index, start);
|
||||
|
@ -121,7 +121,7 @@ public final class JSAdapter implements Scriptable, Function {
|
|||
public boolean has(int index, Scriptable start) {
|
||||
Function func = getAdapteeFunction(HAS_PROP);
|
||||
if (func != null) {
|
||||
Object res = call(func, new Object[] { new Integer(index) });
|
||||
Object res = call(func, new Object[] { Integer.valueOf(index) });
|
||||
return Context.toBoolean(res);
|
||||
} else {
|
||||
start = getAdaptee();
|
||||
|
@ -147,7 +147,7 @@ public final class JSAdapter implements Scriptable, Function {
|
|||
if (start == this) {
|
||||
Function func = getAdapteeFunction(PUT_PROP);
|
||||
if( func != null) {
|
||||
call(func, new Object[] { new Integer(index), value });
|
||||
call(func, new Object[] { Integer.valueOf(index), value });
|
||||
} else {
|
||||
start = getAdaptee();
|
||||
start.put(index, start, value);
|
||||
|
@ -169,7 +169,7 @@ public final class JSAdapter implements Scriptable, Function {
|
|||
public void delete(int index) {
|
||||
Function func = getAdapteeFunction(DEL_PROP);
|
||||
if (func != null) {
|
||||
call(func, new Object[] { new Integer(index) });
|
||||
call(func, new Object[] { Integer.valueOf(index) });
|
||||
} else {
|
||||
getAdaptee().delete(index);
|
||||
}
|
||||
|
@ -296,7 +296,7 @@ public final class JSAdapter implements Scriptable, Function {
|
|||
// map a property id. Property id can only be an Integer or String
|
||||
private Object mapToId(Object tmp) {
|
||||
if (tmp instanceof Double) {
|
||||
return new Integer(((Double)tmp).intValue());
|
||||
return Integer.valueOf(((Double)tmp).intValue());
|
||||
} else {
|
||||
return Context.toString(tmp);
|
||||
}
|
||||
|
|
|
@ -106,7 +106,7 @@ public class PathWrapper extends ScriptableObject {
|
|||
Object[] ids = new Object[path.size()];
|
||||
|
||||
for (int i=0; i<ids.length; i++) {
|
||||
ids[i] = new Integer(i);
|
||||
ids[i] = Integer.valueOf(i);
|
||||
}
|
||||
|
||||
return ids;
|
||||
|
|
|
@ -620,7 +620,7 @@ public final class RhinoCore implements ScopeProvider {
|
|||
if (arg instanceof Float || arg instanceof Long) {
|
||||
return Double.valueOf(n.doubleValue());
|
||||
} else if (!(arg instanceof Double)) {
|
||||
return new Integer(n.intValue());
|
||||
return Integer.valueOf(n.intValue());
|
||||
}
|
||||
} else if (arg instanceof INode) {
|
||||
// interpret HopObject as object/dict
|
||||
|
|
|
@ -456,7 +456,7 @@ public class DatabaseObject {
|
|||
|
||||
// First return system or or prototype properties
|
||||
if (propertyName.equals("length")) {
|
||||
return new Integer(colNames.size());
|
||||
return Integer.valueOf(colNames.size());
|
||||
} else {
|
||||
if (resultSet == null) {
|
||||
lastError = new SQLException("Attempt to access a released result set");
|
||||
|
|
|
@ -450,27 +450,27 @@ public class CronJob {
|
|||
cal.setTime(date);
|
||||
|
||||
// try and short-circuit as fast as possible.
|
||||
Integer theYear = new Integer(cal.get(Calendar.YEAR));
|
||||
Integer theYear = Integer.valueOf(cal.get(Calendar.YEAR));
|
||||
if (!year.contains(ALL_VALUE) && !year.contains(theYear))
|
||||
return false;
|
||||
|
||||
Integer theMonth = new Integer(cal.get(Calendar.MONTH));
|
||||
Integer theMonth = Integer.valueOf(cal.get(Calendar.MONTH));
|
||||
if (!month.contains(ALL_VALUE) && !month.contains(theMonth))
|
||||
return false;
|
||||
|
||||
Integer theDay = new Integer(cal.get(Calendar.DAY_OF_MONTH));
|
||||
Integer theDay = Integer.valueOf(cal.get(Calendar.DAY_OF_MONTH));
|
||||
if (!day.contains(ALL_VALUE) && !day.contains(theDay))
|
||||
return false;
|
||||
|
||||
Integer theWeekDay = new Integer(cal.get(Calendar.DAY_OF_WEEK));
|
||||
Integer theWeekDay = Integer.valueOf(cal.get(Calendar.DAY_OF_WEEK));
|
||||
if (!weekday.contains(ALL_VALUE) && !weekday.contains(theWeekDay))
|
||||
return false;
|
||||
|
||||
Integer theHour = new Integer(cal.get(Calendar.HOUR_OF_DAY));
|
||||
Integer theHour = Integer.valueOf(cal.get(Calendar.HOUR_OF_DAY));
|
||||
if (!hour.contains(ALL_VALUE) && !hour.contains(theHour))
|
||||
return false;
|
||||
|
||||
Integer theMinute = new Integer(cal.get(Calendar.MINUTE));
|
||||
Integer theMinute = Integer.valueOf(cal.get(Calendar.MINUTE));
|
||||
if (!minute.contains(ALL_VALUE) && !minute.contains(theMinute))
|
||||
return false;
|
||||
|
||||
|
@ -484,7 +484,7 @@ public class CronJob {
|
|||
public void addYear(int year)
|
||||
{
|
||||
this.year.remove(ALL_VALUE);
|
||||
this.year.add(new Integer(year));
|
||||
this.year.add(Integer.valueOf(year));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -492,7 +492,7 @@ public class CronJob {
|
|||
*/
|
||||
public void removeYear(int year)
|
||||
{
|
||||
this.year.remove(new Integer(year));
|
||||
this.year.remove(Integer.valueOf(year));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -520,7 +520,7 @@ public class CronJob {
|
|||
public void addMonth(int month)
|
||||
{
|
||||
this.month.remove(ALL_VALUE);
|
||||
this.month.add(new Integer(month));
|
||||
this.month.add(Integer.valueOf(month));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -530,7 +530,7 @@ public class CronJob {
|
|||
*/
|
||||
public void removeMonth(int month)
|
||||
{
|
||||
this.month.remove(new Integer(month));
|
||||
this.month.remove(Integer.valueOf(month));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -556,7 +556,7 @@ public class CronJob {
|
|||
public void addDay(int day)
|
||||
{
|
||||
this.day.remove(ALL_VALUE);
|
||||
this.day.add(new Integer(day));
|
||||
this.day.add(Integer.valueOf(day));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -564,7 +564,7 @@ public class CronJob {
|
|||
*/
|
||||
public void removeDay(int day)
|
||||
{
|
||||
this.day.remove(new Integer(day));
|
||||
this.day.remove(Integer.valueOf(day));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -592,7 +592,7 @@ public class CronJob {
|
|||
public void addWeekday(int weekday)
|
||||
{
|
||||
this.weekday.remove(ALL_VALUE);
|
||||
this.weekday.add(new Integer(weekday));
|
||||
this.weekday.add(Integer.valueOf(weekday));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -602,7 +602,7 @@ public class CronJob {
|
|||
*/
|
||||
public void removeWeekday(int weekday)
|
||||
{
|
||||
this.weekday.remove(new Integer(weekday));
|
||||
this.weekday.remove(Integer.valueOf(weekday));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -628,7 +628,7 @@ public class CronJob {
|
|||
public void addHour(int hour)
|
||||
{
|
||||
this.hour.remove(ALL_VALUE);
|
||||
this.hour.add(new Integer(hour));
|
||||
this.hour.add(Integer.valueOf(hour));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -636,7 +636,7 @@ public class CronJob {
|
|||
*/
|
||||
public void removeHour(int hour)
|
||||
{
|
||||
this.hour.remove(new Integer(hour));
|
||||
this.hour.remove(Integer.valueOf(hour));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -662,7 +662,7 @@ public class CronJob {
|
|||
public void addMinute(int minute)
|
||||
{
|
||||
this.minute.remove(ALL_VALUE);
|
||||
this.minute.add(new Integer(minute));
|
||||
this.minute.add(Integer.valueOf(minute));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -670,7 +670,7 @@ public class CronJob {
|
|||
*/
|
||||
public void removeMinute(int minute)
|
||||
{
|
||||
this.minute.remove(new Integer(minute));
|
||||
this.minute.remove(Integer.valueOf(minute));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue