[seam-commits] Seam SVN: r8309 - branches/Seam_2_0/src/main/org/jboss/seam/deployment.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Thu May 29 13:55:17 EDT 2008
Author: pete.muir at jboss.org
Date: 2008-05-29 13:55:17 -0400 (Thu, 29 May 2008)
New Revision: 8309
Modified:
branches/Seam_2_0/src/main/org/jboss/seam/deployment/DeploymentStrategy.java
Log:
oops
Modified: branches/Seam_2_0/src/main/org/jboss/seam/deployment/DeploymentStrategy.java
===================================================================
--- branches/Seam_2_0/src/main/org/jboss/seam/deployment/DeploymentStrategy.java 2008-05-29 16:24:12 UTC (rev 8308)
+++ branches/Seam_2_0/src/main/org/jboss/seam/deployment/DeploymentStrategy.java 2008-05-29 17:55:17 UTC (rev 8309)
@@ -96,12 +96,12 @@
if (isVFSAvailable() && !isEmbedded() && isJBoss5())
{
log.debug("Using VFS aware scanner on JBoss 5");
- this.scanner = new VFSScanner(this);
+ scanner = new VFSScanner(this);
}
else
{
log.debug("Using default URLScanner");
- this.scanner = new URLScanner(this);
+ scanner = new URLScanner(this);
}
}
return scanner;
More information about the seam-commits
mailing list