This is an automated email from the git hooks/post-receive script. New commit to annotated tag v2.0.0-beta-2 in repository jaxx. See https://gitlab.nuiton.org/nuiton/jaxx.git commit d2ee3284a872cc5c3979397e8aceeb78de38bf96 Author: Tony Chemit <chemit@codelutin.com> Date: Thu Nov 26 20:01:51 2009 +0000 append --- .../jaxx/compiler/decorators/DefaultCompiledObjectDecorator.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jaxx-compiler/src/main/java/jaxx/compiler/decorators/DefaultCompiledObjectDecorator.java b/jaxx-compiler/src/main/java/jaxx/compiler/decorators/DefaultCompiledObjectDecorator.java index ccd10a3..5e550ee 100644 --- a/jaxx-compiler/src/main/java/jaxx/compiler/decorators/DefaultCompiledObjectDecorator.java +++ b/jaxx-compiler/src/main/java/jaxx/compiler/decorators/DefaultCompiledObjectDecorator.java @@ -72,7 +72,7 @@ public class DefaultCompiledObjectDecorator implements CompiledObjectDecorator { String eol = JAXXCompiler.getLineSeparator(); StringBuffer result = new StringBuffer(); if (compiler.getRootObject() == object || compiler.inlineCreation(object)) { - result.append("// inline creation of " + object.getId()); + result.append("// inline creation of ").append(object.getId()); } if (object.isOverride() && object.getOverrideType() == object.getObjectClass()) { //TC-20090309 on utilise le super code quand l'objet est de meme type @@ -120,7 +120,7 @@ public class DefaultCompiledObjectDecorator implements CompiledObjectDecorator { if (object.getId().startsWith("$")) { String additionCode = object.getAdditionCode(); if (!additionCode.isEmpty()) { - code.append("// inline complete setup of " + object.getId()).append(eol); + code.append("// inline complete setup of ").append(object.getId()).append(eol); code.append(additionCode); } } else { @@ -141,7 +141,7 @@ public class DefaultCompiledObjectDecorator implements CompiledObjectDecorator { if (object == root) { String rootCode = root.getInitializationCode(compiler); if (rootCode != null && rootCode.length() > 0) { - code.append("// inline creation of " + object.getId()).append(eol); + code.append("// inline creation of ").append(object.getId()).append(eol); code.append(rootCode); //TC-20091025 generate client properties at creation time (not at setup time) // in some case can save to create a setup method (when there is only client properties @@ -171,7 +171,7 @@ public class DefaultCompiledObjectDecorator implements CompiledObjectDecorator { if (object.hasClientProperties()) { // generate putClientProperty invocations for (Entry<String, String> entry : object.getClientProperties().entrySet()) { - code.append(object.getJavaCode() + ".putClientProperty(\"" + entry.getKey() + "\", " + entry.getValue() + ");").append(eol); + code.append(object.getJavaCode()).append(".putClientProperty(\"").append(entry.getKey()).append("\", ").append(entry.getValue()).append(");").append(eol); } } } -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.