X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ltk/core/RenameIdentifierDelegate.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ltk/core/RenameIdentifierDelegate.java index 4313127..286ee24 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ltk/core/RenameIdentifierDelegate.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ltk/core/RenameIdentifierDelegate.java @@ -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; @@ -95,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); } @@ -108,7 +108,7 @@ public class RenameIdentifierDelegate { } } catch (CoreException e) { String msg = "Workspace: " - + rootContainer.getLocation().toOSString() + + rootContainer.getFullPath().toOSString() + " CoreException " + e.getMessage(); result.addError(msg); } @@ -119,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); } @@ -306,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); }