Fix tabbing.... Please fix your editors so they do tabbing correctly!!! (Spaces...
[IRC.git] / Robust / src / IR / NameDescriptor.java
index ca0d426edcd96b0a659f8c584a4a447dea79e90d..b4023695bfa983e2dd7c69bd6b5c1f6384fa0a07 100644 (file)
@@ -29,11 +29,11 @@ public class NameDescriptor extends Descriptor {
     else
       return nd.getRoot();
   }
-  
+
   public String getPathFromRootToHere() {
     return getPathFromRootToHere(identifier);
   }
-  
+
   public String getPathFromRootToHere(String id) {
     String path = id;
     NameDescriptor temp = this.nd;
@@ -41,10 +41,10 @@ public class NameDescriptor extends Descriptor {
       path =  temp.identifier + "." + path;
       temp = temp.nd;
     }
-    
+
     return path;
   }
+
   public String toString() {
     if (nd==null)
       return identifier;