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=90738f70d1c8243366659ff2901ce315247eafc9;hp=91d85ecf9732f9c5395b1094c2731a0d468e7d4c;hb=e0deb46135b4d11a6c8adf1d11189ca856a2ebb0;hpb=bf8a8b92f405dfd96198d5e1b377ce2f1059675b;ds=sidebyside 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 91d85ecf9..90738f70d 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 @@ -50,12 +50,12 @@ public class FixExportedOntology { convertExportedSharedOntologyIntoBundleOntology(input, output); } - public static void createPGraph(Path input) throws Exception { + public static void createTGAndPGraph(Path input) throws Exception { Path output1 = input.getParent().resolve("graph.tg"); TransferableGraph1 tg = convertExportedSharedOntologyIntoBundleOntology(input, output1); String listing = PrettyPrintTG.print(tg, false); String newName = input.getFileName().toString(); - if (newName.contains("\\.")) + if (newName.contains(".")) newName = newName.split("\\.")[0]; Path output2 = input.getParent().resolve(newName + ".pgraph"); Files.write(output2, listing.getBytes(),StandardOpenOption.CREATE); @@ -66,7 +66,7 @@ public class FixExportedOntology { System.out.println("Required arguments: []"); } else if (args.length == 1) { Path input = Paths.get(args[0]); - createPGraph(input); + createTGAndPGraph(input); } else { convertExportedSharedOntologyIntoBundleOntology(Paths.get(args[0]), Paths.get(args[1])); }