StringBuffer hoverInfoBuffer = new StringBuffer();
String workspaceLocation;
if (fProject != null) {
- workspaceLocation = fProject.getFullPath()
+ workspaceLocation = fProject.getLocation()
.toString() + '/';
} else {
// should never happen?
workspaceLocation = PHPeclipsePlugin
.getWorkspace().getRoot()
- .getFullPath().toString();
+ .getLocation().toString();
}
// boolean foundPHPdoc = false;
for (int i = 0; i < list.size(); i++) {
hoverInfo = hoverInfoBuffer.toString();
} catch (Throwable e) {
// ignore exceptions
- // e.printStackTrace();
+ e.printStackTrace();
}
}
}