Adjusting to changes in NetBeans proper
authorjlahoda
Sun, 22 Jun 2014 23:18:49 +0200
changeset 9881ace99bbb77d
parent 987 be50932fafbc
child 989 47a4cdb7ff5b
Adjusting to changes in NetBeans proper
cmdline/compiler/src/org/netbeans/modules/parsing/api/SnapshotHack.java
     1.1 --- a/cmdline/compiler/src/org/netbeans/modules/parsing/api/SnapshotHack.java	Sun Jun 22 22:07:56 2014 +0200
     1.2 +++ b/cmdline/compiler/src/org/netbeans/modules/parsing/api/SnapshotHack.java	Sun Jun 22 23:18:49 2014 +0200
     1.3 @@ -48,7 +48,7 @@
     1.4  public class SnapshotHack {
     1.5  
     1.6      public static Snapshot create(String text) {
     1.7 -        return new Snapshot(text, new int[0], null, MimePath.get("text/x-java"), new int[][] {new int[] {0, 0}}, new int[][] {new int[] {0, 0}});
     1.8 +        return Snapshot.create(text, new int[0], null, MimePath.get("text/x-java"), new int[][] {new int[] {0, 0}}, new int[][] {new int[] {0, 0}});
     1.9      }
    1.10  
    1.11  }