| Index: compiler/java/com/google/dart/compiler/ast/LibraryUnit.java
|
| diff --git a/compiler/java/com/google/dart/compiler/ast/LibraryUnit.java b/compiler/java/com/google/dart/compiler/ast/LibraryUnit.java
|
| index 19dfa925de1b69ee7202bcfbec98316ca4862ecf..9c822da7d34f8af569c51df22867ada409769ab1 100644
|
| --- a/compiler/java/com/google/dart/compiler/ast/LibraryUnit.java
|
| +++ b/compiler/java/com/google/dart/compiler/ast/LibraryUnit.java
|
| @@ -73,7 +73,7 @@ public class LibraryUnit {
|
| if ((lastSlash = self.lastIndexOf('/')) > -1) {
|
| self = self.substring(lastSlash + 1);
|
| }
|
| - selfSourcePath = new LibraryNode(self);
|
| + selfSourcePath = new LibraryNode(self);
|
| }
|
|
|
| public void addImportPath(LibraryNode path) {
|
| @@ -173,7 +173,7 @@ public class LibraryUnit {
|
| /**
|
| * Return the path for dart source that corresponds to the same dart file as
|
| * this library unit. This is added to the set of sourcePaths for this unit.
|
| - *
|
| + *
|
| * @return the self source path for this unit.
|
| */
|
| public LibraryNode getSelfSourcePath() {
|
|
|