| Index: compiler/java/com/google/dart/compiler/ast/LibraryUnit.java
|
| ===================================================================
|
| --- compiler/java/com/google/dart/compiler/ast/LibraryUnit.java (revision 10526)
|
| +++ compiler/java/com/google/dart/compiler/ast/LibraryUnit.java (working copy)
|
| @@ -32,7 +32,6 @@
|
| private final LibraryNode selfSourcePath;
|
| private final List<LibraryNode> importPaths = Lists.newArrayList();
|
| private final List<LibraryNode> sourcePaths = Lists.newArrayList();
|
| - private final List<LibraryNode> resourcePaths = Lists.newArrayList();
|
| private final List<LibraryNode> nativePaths = Lists.newArrayList();
|
|
|
| private final Map<String, DartUnit> units = new ConcurrentSkipListMap<String, DartUnit>();
|
| @@ -86,11 +85,6 @@
|
| sourceCount++;
|
| }
|
|
|
| - public void addResourcePath(LibraryNode path) {
|
| - assert path != null;
|
| - resourcePaths.add(path);
|
| - }
|
| -
|
| public int getSourceCount() {
|
| return sourceCount;
|
| }
|
| @@ -220,16 +214,6 @@
|
| }
|
|
|
| /**
|
| - * Return a collection of paths to resources that are included in
|
| - * this library or application.
|
| - *
|
| - * @return the paths (not <code>null</code>, contains no <code>null</code>)
|
| - */
|
| - public Iterable<LibraryNode> getResourcePaths() {
|
| - return resourcePaths;
|
| - }
|
| -
|
| - /**
|
| * Returns a collection of paths to native {@link DartSource}s that are included in this library.
|
| *
|
| * @return the paths (not <code>null</code>, contains no <code>null</code>)
|
|
|