metasim 01/01/04 08:13:59
Modified: src/antidote/org/apache/tools/ant/gui/core ProjectProxy.java
Log:
Removed reference to ProjectDocument.
Revision Changes Path
1.3 +1 -14
jakarta-ant/src/antidote/org/apache/tools/ant/gui/core/ProjectProxy.java
Index: ProjectProxy.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/src/antidote/org/apache/tools/ant/gui/core/ProjectProxy.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ProjectProxy.java 2001/01/03 14:18:20 1.2
+++ ProjectProxy.java 2001/01/04 16:13:58 1.3
@@ -75,7 +75,7 @@
* (or other external datamodel) occurs. This class also provides various
* views into the data model, such as TreeModel, Documenet, etc.
*
- * @version $Revision: 1.2 $
+ * @version $Revision: 1.3 $
* @author Simeon Fitch
*/
public class ProjectProxy {
@@ -191,19 +191,6 @@
return _selections;
}
- /**
- * Get the Document perspective on the data.
- *
- * @return Document view on project.
- */
- public Document getDocument() {
- // This is what the call should look like
- //return new ProjectDocument(_project);
- if(_file != null) {
- return new ProjectDocument(_file);
- }
- return null;
- }
/** Class for executing the build in a separate thread. */
private class BuildRunner implements Runnable {