X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.graph%2Fsrc%2Forg%2Fsimantics%2Fgraph%2Frefactoring%2FFixExportedOntology.java;h=1c567b1e21d39294f00652a0e8467e33cf803044;hp=ea449417d305ee7eac034af76e3ceadec07e7b79;hb=aea3e7b117a8398471f10c31844efffc8026f815;hpb=2fb951a4a92e4a863a54c645bae18c2b9aa274bf diff --git a/bundles/org.simantics.graph/src/org/simantics/graph/refactoring/FixExportedOntology.java b/bundles/org.simantics.graph/src/org/simantics/graph/refactoring/FixExportedOntology.java index ea449417d..1c567b1e2 100644 --- a/bundles/org.simantics.graph/src/org/simantics/graph/refactoring/FixExportedOntology.java +++ b/bundles/org.simantics.graph/src/org/simantics/graph/refactoring/FixExportedOntology.java @@ -48,7 +48,7 @@ public class FixExportedOntology { Path input = Paths.get(args[0]); Path output1 = input.getParent().resolve("graph.tg"); TransferableGraph1 tg = convertExportedSharedOntologyIntoBundleOntology(input, output1); - String listing = PrettyPrintTG.print(tg); + String listing = PrettyPrintTG.print(tg, false); Path output2 = Paths.get(args[0].substring(0, args[0].length() - ".sharedLibrary".length()) + ".pgraph"); Files.write(output2, listing.getBytes(),StandardOpenOption.CREATE); } else {