]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.modeling.template2d.ui/src/org/simantics/modeling/template2d/ui/function/LinkSVGImage.java
Moved LinkSVGImage implementation to new location.
[simantics/platform.git] / bundles / org.simantics.modeling.template2d.ui / src / org / simantics / modeling / template2d / ui / function / LinkSVGImage.java
1 package org.simantics.modeling.template2d.ui.function;
2
3 import org.simantics.db.Resource;
4 import org.simantics.db.WriteGraph;
5 import org.simantics.image.ui.LinkSvgImage;
6
7 public class LinkSVGImage {
8
9     public static void linkSVGImage(WriteGraph graph, final Resource parent, final Resource child) {
10         // Moved the implementation to LinkSvgImage because problems compiler warning/error:
11         // A cycle was detected in the build path of project.
12         LinkSvgImage.linkSVGImage(graph, parent, child);
13     }
14 }