remove unnecessary parens

This commit is contained in:
Ben Fry
2014-11-14 15:08:52 -07:00
parent f4ce5e5a1f
commit 96b9f8dc21
2 changed files with 4 additions and 2 deletions

View File

@@ -140,7 +140,7 @@ public class Serial implements SerialPortEventListener {
* into any trouble.
*/
public boolean active() {
return (port.isOpened());
return port.isOpened();
}