Refactory: remove unused classes, imports, fields and methods.
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / ltk / core / RenameIdentifierDelegate.java
index beaf423..286ee24 100644 (file)
@@ -15,7 +15,7 @@ import net.sourceforge.phpdt.core.compiler.ITerminalSymbols;
 import net.sourceforge.phpdt.core.compiler.InvalidInputException;
 import net.sourceforge.phpdt.internal.compiler.parser.Scanner;
 import net.sourceforge.phpdt.internal.compiler.parser.SyntaxError;
-import net.sourceforge.phpdt.internal.ui.util.PHPFileUtil;
+import net.sourceforge.phpdt.internal.core.util.PHPFileUtil;
 import net.sourceforge.phpeclipse.PHPeclipsePlugin;
 
 import org.eclipse.core.resources.IContainer;
@@ -79,7 +79,6 @@ public class RenameIdentifierDelegate {
                // workspace) to look for all *.properties files with the same bundle
                // base name
                IContainer rootContainer;
-               ArrayList phpProjects = new ArrayList();
                IProject project;
                if (info.isAllProjects()) {
                        rootContainer = ResourcesPlugin.getWorkspace().getRoot();
@@ -96,12 +95,12 @@ public class RenameIdentifierDelegate {
                                                        }
                                                } catch (CoreException e) {
                                                        String msg = "Project: "
-                                                                       + project.getLocation().toOSString()
+                                                                       + project.getFullPath().toOSString()
                                                                        + " CoreException " + e.getMessage();
                                                        result.addError(msg);
                                                } catch (Exception e) {
                                                        String msg = "Project: "
-                                                                       + project.getLocation().toOSString()
+                                                                       + project.getFullPath().toOSString()
                                                                        + " Exception " + e.getMessage();
                                                        result.addError(msg);
                                                }
@@ -109,7 +108,7 @@ public class RenameIdentifierDelegate {
                                }
                        } catch (CoreException e) {
                                String msg = "Workspace: "
-                                               + rootContainer.getLocation().toOSString()
+                                               + rootContainer.getFullPath().toOSString()
                                                + " CoreException " + e.getMessage();
                                result.addError(msg);
                        }
@@ -120,11 +119,11 @@ public class RenameIdentifierDelegate {
                                        search(project, result);
                                }
                        } catch (CoreException e) {
-                               String msg = "Project: " + project.getLocation().toOSString()
+                               String msg = "Project: " + project.getFullPath().toOSString()
                                                + " CoreException " + e.getMessage();
                                result.addError(msg);
                        } catch (Exception e) {
-                               String msg = "Project: " + project.getLocation().toOSString()
+                               String msg = "Project: " + project.getFullPath().toOSString()
                                                + " Exception " + e.getMessage();
                                result.addError(msg);
                        }
@@ -307,17 +306,17 @@ public class RenameIdentifierDelegate {
                                }
 
                        } catch (InvalidInputException e) {
-                               String msg = "File: " + file.getLocation().toOSString()
+                               String msg = "File: " + file.getFullPath().toOSString()
                                                + " InvalidInputException " + e.getMessage();
                                status.addError(msg);
                        } catch (SyntaxError e) {
-                               String msg = "File: " + file.getLocation().toOSString()
+                               String msg = "File: " + file.getFullPath().toOSString()
                                                + " SyntaxError " + e.getMessage();
                                status.addError(msg);
                        }
 
                } catch (Exception e) {
-                       String msg = "File: " + file.getLocation().toOSString()
+                       String msg = "File: " + file.getFullPath().toOSString()
                                        + " Exception " + e.getMessage();
                        status.addError(msg);
                }