package org.simantics.modeling.template2d.ui.function; import org.simantics.db.Resource; import org.simantics.db.WriteGraph; import org.simantics.image.ui.LinkSvgImage; public class LinkSVGImage { public static void linkSVGImage(WriteGraph graph, final Resource parent, final Resource child) { // Moved the implementation to LinkSvgImage because problems compiler warning/error: // A cycle was detected in the build path of project. LinkSvgImage.linkSVGImage(graph, parent, child); } }