djencks 2004/07/31 19:04:41
Modified: modules/maven-plugin/src/java/org/apache/geronimo/deployment/mavenplugin DistributeModule.java Log: improve code layout Revision Changes Path 1.2 +9 -8 incubator-geronimo/modules/maven-plugin/src/java/org/apache/geronimo/deployment/mavenplugin/DistributeModule.java Index: DistributeModule.java =================================================================== RCS file: /home/cvs/incubator-geronimo/modules/maven-plugin/src/java/org/apache/geronimo/deployment/mavenplugin/DistributeModule.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- DistributeModule.java 25 Jul 2004 08:22:07 -0000 1.1 +++ DistributeModule.java 1 Aug 2004 02:04:41 -0000 1.2 @@ -53,6 +53,14 @@ this.plan = plan; } + public String getHome() { + return home; + } + + public void setHome(String home) { + this.home = home; + } + public void execute() throws Exception { DeploymentManager manager = getDeploymentManager(); @@ -80,11 +88,4 @@ } } - public String getHome() { - return home; - } - - public void setHome(String home) { - this.home = home; - } }