Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2010-02-05 10:41:53 +0000
committerEike Stepper2010-02-05 10:41:53 +0000
commit9945444baa1a2cb3c7a49859b9845567d527a1fd (patch)
treece4f3db07c43b86e19b55a5ca245638b42a5a46d /plugins/org.gastro.server.web/src-gen
parent89bdb56d4cf31e285c34f0f76654760e5b2c105c (diff)
downloadcdo-9945444baa1a2cb3c7a49859b9845567d527a1fd.tar.gz
cdo-9945444baa1a2cb3c7a49859b9845567d527a1fd.tar.xz
cdo-9945444baa1a2cb3c7a49859b9845567d527a1fd.zip
fixed warnings
Diffstat (limited to 'plugins/org.gastro.server.web/src-gen')
-rw-r--r--plugins/org.gastro.server.web/src-gen/templates/MenuCardTemplate.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.gastro.server.web/src-gen/templates/MenuCardTemplate.java b/plugins/org.gastro.server.web/src-gen/templates/MenuCardTemplate.java
index 1c16836d9f..b8d9796cb4 100644
--- a/plugins/org.gastro.server.web/src-gen/templates/MenuCardTemplate.java
+++ b/plugins/org.gastro.server.web/src-gen/templates/MenuCardTemplate.java
@@ -17,7 +17,7 @@ public class MenuCardTemplate
return result;
}
- public final String NL = nl == null ? (System.getProperties().getProperty("line.separator")) : nl;
+ public final String NL = nl == null ? System.getProperties().getProperty("line.separator") : nl;
protected final String TEXT_1 = "\t";

Back to the top