jdk/src/share/classes/com/sun/security/jgss/AuthorizationDataEntry.java
changeset 5457 d2782f1ecc9f
parent 3483 a16fce1820ef
child 5506 202f599c92aa
--- a/jdk/src/share/classes/com/sun/security/jgss/AuthorizationDataEntry.java	Tue Apr 27 09:42:51 2010 +0100
+++ b/jdk/src/share/classes/com/sun/security/jgss/AuthorizationDataEntry.java	Thu Apr 29 15:50:40 2010 +0800
@@ -1,5 +1,5 @@
 /*
- * Copyright 2009 Sun Microsystems, Inc.  All Rights Reserved.
+ * Copyright 2009-2010 Sun Microsystems, Inc.  All Rights Reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -63,6 +63,6 @@
     public String toString() {
         return "AuthorizationDataEntry: type="+type+", data=" +
                 data.length + " bytes:\n" +
-                new sun.misc.HexDumpEncoder().encode(data);
+                new sun.misc.HexDumpEncoder().encodeBuffer(data);
     }
 }