[jboss-cvs] JBossAS SVN: r84634 - trunk/system/src/main/org/jboss/system/server/profileservice/repository.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Mon Feb 23 11:01:27 EST 2009
Author: emuckenhuber
Date: 2009-02-23 11:01:27 -0500 (Mon, 23 Feb 2009)
New Revision: 84634
Modified:
trunk/system/src/main/org/jboss/system/server/profileservice/repository/MutableDeploymentRepository.java
Log:
rename variable, as this is not a vfsDeployment anymore
Modified: trunk/system/src/main/org/jboss/system/server/profileservice/repository/MutableDeploymentRepository.java
===================================================================
--- trunk/system/src/main/org/jboss/system/server/profileservice/repository/MutableDeploymentRepository.java 2009-02-23 14:36:36 UTC (rev 84633)
+++ trunk/system/src/main/org/jboss/system/server/profileservice/repository/MutableDeploymentRepository.java 2009-02-23 16:01:27 UTC (rev 84634)
@@ -258,8 +258,8 @@
public ProfileDeployment removeDeployment(String vfsPath) throws Exception
{
- ProfileDeployment vfsDeployment = getDeployment(vfsPath);
- VirtualFile root = vfsDeployment.getRoot();
+ ProfileDeployment deployment = getDeployment(vfsPath);
+ VirtualFile root = deployment.getRoot();
if(root.delete() == false)
throw new IOException("Failed to delete: " + root);
return super.removeDeployment(vfsPath);
More information about the jboss-cvs-commits
mailing list