Kaydet (Commit) 87cb8d78 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

java.lang.String.isEmpty is only since 1.6

Change-Id: I43fd404e96192af3c0a8734c4547cee3b906c935
üst 8937fac2
......@@ -258,7 +258,7 @@ public class SDBCReportDataFactory implements DataSourceFactory
prefix = (String)column.getPropertyValue("TableName");
if (prefix == null)
prefix = "";
if (!prefix.isEmpty())
if (prefix.length() != 0)
{
prefix = quote + prefix + quote + ".";
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment