|
From: <de...@us...> - 2003-08-07 18:29:24
|
Update of /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core
In directory sc8-pr-cvs1:/tmp/cvs-serv5666/modules/core/src/com/babeldoc/core
Modified Files:
BabeldocCommand.java
Log Message:
I guess this will fix -v option problem
Index: BabeldocCommand.java
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/BabeldocCommand.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** BabeldocCommand.java 7 Aug 2003 08:46:35 -0000 1.14
--- BabeldocCommand.java 7 Aug 2003 18:29:21 -0000 1.15
***************
*** 165,175 ****
if (commandLine.hasOption('h')) {
printUsage();
! } else if (commandLine.hasOption('v')) {
setVerbose(true);
! } else if (commandLine.hasOption('d')) {
printConfigInfo();
! } else {
! execute(commandLine);
! }
}
--- 165,178 ----
if (commandLine.hasOption('h')) {
printUsage();
! return;
! };
! if (commandLine.hasOption('v')) {
setVerbose(true);
! };
! if (commandLine.hasOption('d')) {
printConfigInfo();
! };
! execute(commandLine);
!
}
|