[Firebug-cvs] firebug/project/java/src/org/firebug ListenFB.java,1.11,1.12
Brought to you by:
doolin
From: <do...@us...> - 2003-07-30 21:43:24
|
Update of /cvsroot/firebug/firebug/project/java/src/org/firebug In directory sc8-pr-cvs1:/tmp/cvs-serv5788/project/java/src/org/firebug Modified Files: ListenFB.java Log Message: listenFB will now run from build.xml using ant if the build properties has the paths set correctly. Index: ListenFB.java =================================================================== RCS file: /cvsroot/firebug/firebug/project/java/src/org/firebug/ListenFB.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** ListenFB.java 28 Jul 2003 03:13:14 -0000 1.11 --- ListenFB.java 30 Jul 2003 21:43:21 -0000 1.12 *************** *** 97,100 **** --- 97,105 ---- UnsupportedCommOperationException { + Enumeration pList = CommPortIdentifier.getPortIdentifiers(); + + System.out.println("Elements: " + pList.hasMoreElements()); + + System.out.println("Opening port " + portName); portId = CommPortIdentifier.getPortIdentifier(portName); *************** *** 208,215 **** static void handle_args(String [] args) { if (args.length != 3) { printUsage(); } ! /** None of the following is currently being used. */ --- 213,221 ---- static void handle_args(String [] args) { + if (args.length != 3) { printUsage(); } ! /** None of the following is currently being used. */ |