< prev index next >

src/java.desktop/share/classes/javax/sound/midi/MidiDevice.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

@@ -348,13 +348,13 @@
         public final String getVersion() {
             return version;
         }
 
         /**
-         * Provides a string representation of the device information.
+         * Returns a string representation of the info object.
          *
-         * @return a description of the info object
+         * @return a string representation of the info object
          */
         @Override
         public final String toString() {
             return name;
         }
< prev index next >