< prev index next >

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

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

*** 1,7 **** /* ! * Copyright (c) 1999, 2017, 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 --- 1,7 ---- /* ! * 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
*** 347,361 **** public final String getVersion() { return version; } /** ! * Provides a string representation of the mixer info. * ! * @return a string describing the info object */ @Override public final String toString() { ! return (name + ", version " + version); } } } --- 347,361 ---- public final String getVersion() { return version; } /** ! * Returns a string representation of the info object. * ! * @return a string representation of the info object */ @Override public final String toString() { ! return String.format("%s, version %s", name, version); } } }
< prev index next >