diff -r e4e7db2435f8 -r 0f44b7360c8d front_processing/extern/TUIO_JAVA/src/com/illposed/osc/OSCPort.java --- a/front_processing/extern/TUIO_JAVA/src/com/illposed/osc/OSCPort.java Thu Mar 22 16:00:17 2012 +0100 +++ b/front_processing/extern/TUIO_JAVA/src/com/illposed/osc/OSCPort.java Thu Mar 22 18:15:53 2012 +0100 @@ -1,4 +1,4 @@ -/** +/** * @author cramakrishnan * * Copyright (C) 2004, C. Ramakrishnan / Illposed Software @@ -19,33 +19,33 @@ public abstract class OSCPort { - protected DatagramSocket socket; - protected int port; - - /** - * The port that the SuperCollider synth engine ususally listens too - */ - public static final int defaultSCOSCPort = 57110; - - /** - * The port that the SuperCollider language engine ususally listens too - */ - public static final int defaultSCLangOSCPort = 57120; - - /** - * @see java.lang.Object#finalize() - */ - protected void finalize() throws Throwable { - super.finalize(); - socket.close(); - } - - /** - * Close the socket and free-up resources. It's recommended that clients call - * this when they are done with the port. - */ - public void close() { - socket.close(); - } + protected DatagramSocket socket; + protected int port; + + /** + * The port that the SuperCollider synth engine ususally listens too + */ + public static final int defaultSCOSCPort = 57110; + + /** + * The port that the SuperCollider language engine ususally listens too + */ + public static final int defaultSCLangOSCPort = 57120; + + /** + * @see java.lang.Object#finalize() + */ + protected void finalize() throws Throwable { + super.finalize(); + socket.close(); + } + + /** + * Close the socket and free-up resources. It's recommended that clients call + * this when they are done with the port. + */ + public void close() { + socket.close(); + } }