Created a separated 'externaltools' plugin
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / util / PHPFileUtil.java
index 432359c..b205146 100644 (file)
@@ -99,12 +99,12 @@ public class PHPFileUtil {
    * @param php_extensions
    *          The PHP extensions to set.
    */
-  public static void setExtensins(String[] php_extensions) {
+  public static void setExtensions(String[] php_extensions) {
     PHP_EXTENSIONS = php_extensions;
   }
 
   /**
-   * Creata the file for the given absolute file path 
+   * Creata the file for the given absolute file path
    * 
    * @param absoluteFilePath
    * @param project
@@ -114,13 +114,15 @@ public class PHPFileUtil {
     if (absoluteFilePath == null || project == null) {
       return null;
     }
+
     String projectPath = project.getLocation().toString();
     String filePath = absoluteFilePath.toString().substring(projectPath.length() + 1);
     return project.getFile(filePath);
+
   }
 
   /**
-   * Determine the path of an include name string  
+   * Determine the path of an include name string
    * 
    * @param includeNameString
    * @param resource
@@ -148,8 +150,6 @@ public class PHPFileUtil {
       }
     }
 
-    //    int index = includeNameString.indexOf('/');
-    //    if (index < 0) {
     // includeNameString contains no path separator
     path = project.getLocation().append(resourcePath.removeLastSegments(1));
     path = path.append(includeNameString);