[Jboss-cvs] JBossAS SVN: r56892 - branches/Branch_4_0/cluster/src/main/org/jboss/ha/framework/server

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Sep 15 12:38:32 EDT 2006


Author: bstansberry at jboss.com
Date: 2006-09-15 12:38:31 -0400 (Fri, 15 Sep 2006)
New Revision: 56892

Modified:
   branches/Branch_4_0/cluster/src/main/org/jboss/ha/framework/server/ClusterFileTransfer.java
Log:
Call static method statically

Modified: branches/Branch_4_0/cluster/src/main/org/jboss/ha/framework/server/ClusterFileTransfer.java
===================================================================
--- branches/Branch_4_0/cluster/src/main/org/jboss/ha/framework/server/ClusterFileTransfer.java	2006-09-15 16:18:49 UTC (rev 56891)
+++ branches/Branch_4_0/cluster/src/main/org/jboss/ha/framework/server/ClusterFileTransfer.java	2006-09-15 16:38:31 UTC (rev 56892)
@@ -195,10 +195,10 @@
          return fileChunk;
       } catch (IOException e)
       {
-         this.logException(e);
+         logException(e);
       } catch (Exception e)
       {
-         this.logException(e);
+         logException(e);
       }
       return null;
    }
@@ -226,7 +226,7 @@
          return filePullOperation.getFileChunk();
       } catch (IOException e)
       {
-         this.logException(e);
+         logException(e);
       }
       return null;
    }
@@ -308,10 +308,10 @@
          filePushOperation.getOutputStream().write(fileChunk.mChunk, 0, fileChunk.mByteCount);
       } catch (FileNotFoundException e)
       {
-         this.logException(e);
+         logException(e);
       } catch (IOException e)
       {
-         this.logException(e);
+         logException(e);
       }
    }
 
@@ -347,7 +347,7 @@
          }
       } catch (IOException e)
       {
-         this.logException(e);
+         logException(e);
       }
    }
 




More information about the jboss-cvs-commits mailing list