Hudson complained about this change - we need to keep backward compatibility for sqlj package with java 1.4

[javac] http://debuild901:8080/job/adempiere-trunk-community/ws/trunk/sqlj/src/org/compiere/sqlj/Adempiere.java :63: generics are not supported in -source 1.3
    [javac] (use -source 5 or higher to enable generics)
    [javac] 		Enumeration<?> en = System.getProperties().keys();
This commit is contained in:
Carlos Ruiz 2010-04-20 03:07:11 +00:00
parent 9ac0607578
commit a0c0cf4ab6
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ public class Adempiere implements Serializable
public static String getProperties()
{
StringBuffer sb = new StringBuffer();
Enumeration<?> en = System.getProperties().keys();
Enumeration en = System.getProperties().keys();
while (en.hasMoreElements())
{
if (sb.length() != 0)