diff options
author | Phil Burk <[email protected]> | 2017-03-26 09:55:06 -0700 |
---|---|---|
committer | Phil Burk <[email protected]> | 2017-07-31 18:50:42 -0700 |
commit | 55bfbe5a4c6f2c89ecbb8c21bcad6b90f260189a (patch) | |
tree | 19b097804747b714fc856a172d8d456d68d8d2e3 /src/com/jsyn/ports/PortBlockPart.java | |
parent | e0c2c23cfea01f317e62c75177d388f312618fc3 (diff) |
MultiPassThrough: multi-channel passthrough
Diffstat (limited to 'src/com/jsyn/ports/PortBlockPart.java')
-rw-r--r-- | src/com/jsyn/ports/PortBlockPart.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/com/jsyn/ports/PortBlockPart.java b/src/com/jsyn/ports/PortBlockPart.java index 26bbae0..ad75211 100644 --- a/src/com/jsyn/ports/PortBlockPart.java +++ b/src/com/jsyn/ports/PortBlockPart.java @@ -4,9 +4,9 @@ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -25,7 +25,7 @@ import com.softsynth.shared.time.TimeStamp; /** * Part of a multi-part port, for example, the left side of a stereo port. - * + * * @author Phil Burk (C) 2009 Mobileer Inc */ public class PortBlockPart implements ConnectableOutput, ConnectableInput { @@ -64,7 +64,7 @@ public class PortBlockPart implements ConnectableOutput, ConnectableInput { // System.out.println("addConnection from " + this + " to " + otherPart // ); if (connections.contains(otherPart)) { - System.out.println("addConnection alreacy had connection from " + this + " to " + System.out.println("addConnection already had connection from " + this + " to " + otherPart); } else { connections.add(otherPart); |