X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.document.linking.ui%2Fsrc%2Forg%2Fsimantics%2Fdocument%2Flinking%2Freport%2Ftemplates%2Fcustom%2FEvaluatorCustomizableContent.java;h=dbc02e72ce9cc9e82de9da85934fc8fa7673b4a1;hp=7394154662ae18e7a0538b6acef0d39564e4d999;hb=8783f9ee2b67f83160d88f43a7aef02a6b25f955;hpb=6431ba9c664c0b3c65c486397f610a514f246416 diff --git a/bundles/org.simantics.document.linking.ui/src/org/simantics/document/linking/report/templates/custom/EvaluatorCustomizableContent.java b/bundles/org.simantics.document.linking.ui/src/org/simantics/document/linking/report/templates/custom/EvaluatorCustomizableContent.java index 739415466..dbc02e72c 100644 --- a/bundles/org.simantics.document.linking.ui/src/org/simantics/document/linking/report/templates/custom/EvaluatorCustomizableContent.java +++ b/bundles/org.simantics.document.linking.ui/src/org/simantics/document/linking/report/templates/custom/EvaluatorCustomizableContent.java @@ -34,7 +34,7 @@ public class EvaluatorCustomizableContent implements CustomizableContent{ public String getContent(ReadGraph graph, Resource resource, Map context) throws DatabaseException { if (!SourceLinkUtil.isValidReference(graph, resource)) - return "Deleted reference"; + return "Deleted reference"; //$NON-NLS-1$ Variable variable = graph.adapt(resource, Variable.class); return item.getValue(graph, variable,context); } @@ -43,7 +43,7 @@ public class EvaluatorCustomizableContent implements CustomizableContent{ public List getLines(ReadGraph graph, Resource resource, Map context) throws DatabaseException { if (!SourceLinkUtil.isValidReference(graph, resource)) - return Collections.singletonList(new DocumentLine("Deleted reference")); + return Collections.singletonList(new DocumentLine("Deleted reference")); //$NON-NLS-1$ Variable variable = graph.adapt(resource, Variable.class); return item.getLines(graph, variable,context); }