< prev index next >
src/java.desktop/share/classes/javax/sound/sampled/CompoundControl.java
Print this page
@@ -1,7 +1,7 @@
/*
- * Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2018, 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
@@ -55,17 +55,11 @@
* Returns the set of member controls that comprise the compound control.
*
* @return the set of member controls
*/
public Control[] getMemberControls() {
- Control[] localArray = new Control[controls.length];
-
- for (int i = 0; i < controls.length; i++) {
- localArray[i] = controls[i];
- }
-
- return localArray;
+ return controls.clone();
}
/**
* Provides a string representation of the control.
*
< prev index next >