summaryrefslogtreecommitdiff
path: root/javax/sound/sampled/CompoundControl.java
diff options
context:
space:
mode:
Diffstat (limited to 'javax/sound/sampled/CompoundControl.java')
-rw-r--r--javax/sound/sampled/CompoundControl.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/javax/sound/sampled/CompoundControl.java b/javax/sound/sampled/CompoundControl.java
index 556c805ad..2b8941cf3 100644
--- a/javax/sound/sampled/CompoundControl.java
+++ b/javax/sound/sampled/CompoundControl.java
@@ -95,9 +95,9 @@ public abstract class CompoundControl extends Control
result.append(": ");
for (int i = 0; i < memberControls.length; ++i)
{
- if (i > 0)
- result.append(", ");
- result.append(memberControls[i].toString());
+ if (i > 0)
+ result.append(", ");
+ result.append(memberControls[i].toString());
}
return result.toString();
}