]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/chart/property/DoublePropertyFactory.java
Externalize strings
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / chart / property / DoublePropertyFactory.java
index bbf30a1643277234e40eb37c16f0f79269fe5d47..1015c3c6f8bb20e4ad7b748089874f103cf202e1 100644 (file)
@@ -36,7 +36,7 @@ public class DoublePropertyFactory extends ReadFactoryImpl<Resource, String> {
     @Override
     public String perform(ReadGraph graph, Resource r) throws DatabaseException {
         Double value = graph.getPossibleRelatedAdapter(r, graph.getResource(propertyURI), Double.class);
-        return value != null ? value.toString() : "";
+        return value != null ? value.toString() : ""; //$NON-NLS-1$
     }
 
 }