Yes I made a comment in the JIRA 3378- I was not able to build branches/2.0 on Sat. nite. I'll try build it today.

Lin

Donald Woods wrote:
Are you going to include this in branches/2.0 for a 2.0.1 release?

-Donald

[EMAIL PROTECTED] wrote:
Author: linsun
Date: Sat Aug  4 21:03:38 2007
New Revision: 562816

URL: http://svn.apache.org/viewvc?view=rev&rev=562816
Log:
oops missed two spots on formatting

Modified:
geronimo/server/trunk/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/factories/BaseDeploymentFactory.java

Modified: geronimo/server/trunk/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/factories/BaseDeploymentFactory.java URL: http://svn.apache.org/viewvc/geronimo/server/trunk/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/factories/BaseDeploymentFactory.java?view=diff&rev=562816&r1=562815&r2=562816 ============================================================================== --- geronimo/server/trunk/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/factories/BaseDeploymentFactory.java (original) +++ geronimo/server/trunk/modules/geronimo-deploy-jsr88/src/main/java/org/apache/geronimo/deployment/plugin/factories/BaseDeploymentFactory.java Sat Aug 4 21:03:38 2007
@@ -70,8 +70,9 @@
private ConnectParams parseURI(String uri) {
         uri = uri.trim();
-        if (log.isDebugEnabled())
+        if (log.isDebugEnabled()) {
             log.debug("Parsing URI=" + uri);
+        }
         if(!uri.startsWith(URI_PREFIX)) {
             return null;
         }
@@ -127,8 +128,9 @@
         if (params == null) {
             return null;
         }
-        if (log.isDebugEnabled())
+        if (log.isDebugEnabled()) {
log.debug("Using protocol=" + params.getProtocol() + ", host=" + params.getHost() + ", port=" + params.getPort());
+        }
try {
             if (params.getProtocol().equals("jmx")) {





Reply via email to