X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fgeneral%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fio%2FSimpleProcess.java;h=399d0030a9a86aec0311490a70d756ca7956f5c2;hb=4a575582a5c2999bd816b197d9cf274b4b3ddcd7;hp=c08f001da84910d26e8b74a2be72968f78503a26;hpb=7d3754ca3d757ef89241cdbd679f82941e64cfc6;p=utils diff --git a/support/general/src/main/java/org/wamblee/io/SimpleProcess.java b/support/general/src/main/java/org/wamblee/io/SimpleProcess.java index c08f001d..399d0030 100644 --- a/support/general/src/main/java/org/wamblee/io/SimpleProcess.java +++ b/support/general/src/main/java/org/wamblee/io/SimpleProcess.java @@ -12,7 +12,7 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - */ + */ package org.wamblee.io; import java.io.BufferedReader; @@ -32,7 +32,8 @@ import java.util.logging.Logger; * @version $Revision$ */ public class SimpleProcess { - private static final Logger LOG = Logger.getLogger(SimpleProcess.class.getName()); + private static final Logger LOG = Logger.getLogger(SimpleProcess.class + .getName()); private File directory; @@ -137,8 +138,11 @@ public class SimpleProcess { aReaderThread.join(); } catch (InterruptedException e) { LOG - .log(Level.WARNING, this + - ": error waiting for output stream reader of process to finish", e); + .log( + Level.WARNING, + this + + ": error waiting for output stream reader of process to finish", + e); } } @@ -166,7 +170,8 @@ public class SimpleProcess { try { br.close(); } catch (IOException e) { - LOG.log(Level.WARNING, "Error closing stream " + aPrefix, e); + LOG.log(Level.WARNING, "Error closing stream " + + aPrefix, e); } } }