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:
parent
9ac0607578
commit
a0c0cf4ab6
|
@ -60,7 +60,7 @@ public class Adempiere implements Serializable
|
||||||
public static String getProperties()
|
public static String getProperties()
|
||||||
{
|
{
|
||||||
StringBuffer sb = new StringBuffer();
|
StringBuffer sb = new StringBuffer();
|
||||||
Enumeration<?> en = System.getProperties().keys();
|
Enumeration en = System.getProperties().keys();
|
||||||
while (en.hasMoreElements())
|
while (en.hasMoreElements())
|
||||||
{
|
{
|
||||||
if (sb.length() != 0)
|
if (sb.length() != 0)
|
||||||
|
|
Loading…
Reference in New Issue