diff -r 294a39765b0b -r 3bc4c54f4bcc samples/messagedigest/src-bridge/org/apidesign/impl/security/extension/BridgeToNew.java --- a/samples/messagedigest/src-bridge/org/apidesign/impl/security/extension/BridgeToNew.java Sat Jun 14 09:52:25 2008 +0200 +++ b/samples/messagedigest/src-bridge/org/apidesign/impl/security/extension/BridgeToNew.java Sat Jun 14 09:56:12 2008 +0200 @@ -1,8 +1,3 @@ -/* - * To change this template, choose Tools | Templates - * and open the template in the editor. - */ - package org.apidesign.impl.security.extension; import java.nio.ByteBuffer; @@ -18,7 +13,8 @@ */ // BEGIN: day.end.bridges.BridgeToNew public class BridgeToNew extends Digestor { - /** initializes the other bridge, and allow us to eliminate stack overflow */ + /** initializes the other bridge, and allow us to eliminate stack + * overflow */ private static final BridgeToOld oldBridge = new BridgeToOld(); @Override @@ -34,7 +30,9 @@ try { return MessageDigest.getInstance(algorithm); } catch (NoSuchAlgorithmException ex) { - Logger.getLogger(BridgeToNew.class.getName()).log(Level.FINE, "Cannot find " + algorithm, ex); + Logger.getLogger(BridgeToNew.class.getName()).log( + Level.FINE, "Cannot find " + algorithm, ex + ); return null; } }