X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.modeling.ui%2Fsrc%2Forg%2Fsimantics%2Fmodeling%2Fui%2Fchart%2Fproperty%2FDoublePropertyFactory.java;h=1015c3c6f8bb20e4ad7b748089874f103cf202e1;hp=bbf30a1643277234e40eb37c16f0f79269fe5d47;hb=47269fe0acb894f346810417d950a1ab59cdc0ea;hpb=11309f6516278203264b680235cbbe1dc2bde98e diff --git a/bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/chart/property/DoublePropertyFactory.java b/bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/chart/property/DoublePropertyFactory.java index bbf30a164..1015c3c6f 100644 --- a/bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/chart/property/DoublePropertyFactory.java +++ b/bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/chart/property/DoublePropertyFactory.java @@ -36,7 +36,7 @@ public class DoublePropertyFactory extends ReadFactoryImpl { @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$ } }