IDEMPIERE-3798 warning deprecated constructor

This commit is contained in:
Carlos Ruiz 2019-03-21 16:21:04 -03:00
parent 0a0ad7027c
commit de7a612c81
1 changed files with 2 additions and 2 deletions

View File

@ -85,11 +85,11 @@ public class PackInFolderApplication implements IApplication {
.append("\n Logs=\n").append(pi.getLogInfo(false).replaceAll("<br>", "\n"));
System.out.println(msgout.toString());
if (!success)
return new Integer(1);
return Integer.valueOf(1);
} else {
System.out.println("Apply PackIn from Folder usage:");
System.out.println("RUN_ApplyPackInFromFolder.sh folder");
return new Integer(1);
return Integer.valueOf(1);
}