You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2012/10/29 16:13:21 UTC

svn commit: r1403354 - /commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpClientFactory.java

Author: ggregory
Date: Mon Oct 29 15:13:21 2012
New Revision: 1403354

URL: http://svn.apache.org/viewvc?rev=1403354&view=rev
Log:
Checkstyle: Fall through from previous branch of the switch statement.

Modified:
    commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpClientFactory.java

Modified: commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpClientFactory.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpClientFactory.java?rev=1403354&r1=1403353&r2=1403354&view=diff
==============================================================================
--- commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpClientFactory.java (original)
+++ commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpClientFactory.java Mon Oct 29 15:13:21 2012
@@ -341,14 +341,19 @@ public final class SftpClientFactory
             {
                 case FATAL:
                     LOG.fatal(msg);
+                    break;
                 case ERROR:
                     LOG.error(msg);
+                    break;
                 case WARN:
                     LOG.warn(msg);
+                    break;
                 case DEBUG:
                     LOG.debug(msg);
+                    break;
                 case INFO:
                     LOG.info(msg);
+                    break;
                 default:
                     LOG.debug(msg);
             }