< prev index next >

src/java.desktop/share/classes/javax/sound/sampled/Port.java

Print this page
rev 57600 : 8236980: toString() cleanup in JavaSound
Reviewed-by: XXX

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2020, Oracle and/or its affiliates. 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
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -197,15 +197,16 @@
         public final int hashCode() {
             return super.hashCode();
         }
 
         /**
-         * Provides a {@code String} representation of the port.
+         * Returns a string representation of the info object.
          *
-         * @return a string that describes the port
+         * @return a string representation of the info object
          */
         @Override
         public final String toString() {
-            return (name + ((isSource == true) ? " source" : " target") + " port");
+            return String.format("%s %s port", getName(),
+                                 isSource() ? "source" : "target");
         }
     }
 }
< prev index next >