2 Commits

Author SHA1 Message Date
giberta1
b3f10a6962 Add 1.1.2 entry:
Rename SWIFTABORT into SWIFTERROR,
    Add Legend printout line.
2002-05-13 16:38:12 +00:00
giberta1
49d568238e Rename SWIFTABORT message into SWIFTERROR,
Add legend message.
2002-05-13 16:28:02 +00:00
2 changed files with 18 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
// $RCSfile: MQSSave.java,v $
// $Revision: 1.5 $
// $Revision: 1.6 $
// $Name: $
// $Date: 2002/05/06 09:51:49 $
// $Date: 2002/05/13 16:28:02 $
// $Author: giberta1 $
/*
@@ -457,7 +457,7 @@ public class MQSSave
String msg_type;
final String TYPE_SWIFTBEGIN = "SWIFTBEGIN";
final String TYPE_SWIFTEND = "SWIFTEND ";
final String TYPE_SWIFTABORT = "SWIFTABORT";
final String TYPE_SWIFTERROR = "SWIFTERROR";
final String TYPE_SWIFTOUT = "SWIFTOUT ";
boolean get_first = false;
boolean first_flush = true;
@@ -525,7 +525,7 @@ public class MQSSave
first_flush = true;
}
}
else if( msg_type.equals( TYPE_SWIFTEND) || msg_type.equals( TYPE_SWIFTABORT))
else if( msg_type.equals( TYPE_SWIFTEND) || msg_type.equals( TYPE_SWIFTERROR))
{
// System.out.print( "FEA ");
Counter_Print( Total_Nb++, '#');
@@ -588,7 +588,7 @@ public class MQSSave
get_first = true;
first_scan = true;
}
else if( msg_type.equals( TYPE_SWIFTABORT))
else if( msg_type.equals( TYPE_SWIFTERROR))
{
// System.out.print( "SA ");
@@ -637,7 +637,7 @@ public class MQSSave
mode = MODE_SCAN;
get_first = true;
}
else if( msg_type.equals( TYPE_SWIFTABORT))
else if( msg_type.equals( TYPE_SWIFTERROR))
{
System.out.println( "Internal error: (" + msg_type + ") found during Move!");
throw new Exception();
@@ -728,6 +728,7 @@ public class MQSSave
if( TI_Swift_Batch_Mode)
{
System.out.println( "Legend: .: Saved *: Flushed #: Skiped ~: Scaned");
Flush_File = new BufferedOutputStream( new FileOutputStream( Flush_File_Name));
}

View File

@@ -1,13 +1,22 @@
# $RCSfile: ReleaseNotes.txt,v $
# $Revision: 1.4 $
# $Revision: 1.5 $
# $Name: $
# $Date: 2002/05/06 10:00:34 $
# $Date: 2002/05/13 16:38:12 $
# $Author: giberta1 $
--------------------------------------------------------------------------------
MQSSave V 1.1.2 - A. Gibert - 13/05/02
--------------------------------------------------------------------------------
Rename SWIFTABORT into SWIFTERROR,
Add Legend printout line.
--------------------------------------------------------------------------------
MQSSave V 1.1.1 - A. Gibert - 06/05/02
--------------------------------------------------------------------------------