2 Commits

Author SHA1 Message Date
giberta1
a4bb9a9f1b Add 1.1.1 entry:
Add return code handling.
2002-05-06 10:00:34 +00:00
giberta1
781932ee0c Add System.exit() handling. 2002-05-06 09:51:49 +00:00
2 changed files with 18 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
// $RCSfile: MQSSave.java,v $
// $Revision: 1.4 $
// $Revision: 1.5 $
// $Name: $
// $Date: 2002/05/03 17:12:58 $
// $Date: 2002/05/06 09:51:49 $
// $Author: giberta1 $
/*
@@ -708,6 +708,8 @@ public class MQSSave
{
System.out.println( "Usage: MQSSave [-mb \"message_break\"] [-tisbm [-ffn <Flush_File_Name>]] <Output_File_Name> <Input_MsgQueue_Name>");
System.out.println( " Default: Message Break: (" + Str_UnFormat( Message_Break) + ") TI Swift Batch Mode: (" + TI_Swift_Batch_Mode + ") Flush File Name: (" + Flush_File_Name + ")");
System.exit( 1);
}
else
{
@@ -788,6 +790,8 @@ public class MQSSave
MQSDeInit();
System.out.println( "MQS Save Completed !");
System.exit( 0);
}
}
@@ -795,6 +799,8 @@ public class MQSSave
{
System.out.println("Exception: (" + Expt + ") !");
Expt.printStackTrace();
System.exit( 1);
}
}

View File

@@ -1,13 +1,21 @@
# $RCSfile: ReleaseNotes.txt,v $
# $Revision: 1.3 $
# $Revision: 1.4 $
# $Name: $
# $Date: 2002/05/03 17:15:36 $
# $Date: 2002/05/06 10:00:34 $
# $Author: giberta1 $
--------------------------------------------------------------------------------
MQSSave V 1.1.1 - A. Gibert - 06/05/02
--------------------------------------------------------------------------------
Add return code handling.
--------------------------------------------------------------------------------
MQSSave V 1.1.0 - A. Gibert - 03/05/02
--------------------------------------------------------------------------------