giacomo 2003/01/09 09:09:42 Modified: src/blocks/databases/java/org/apache/cocoon/transformation SQLTransformer.java Log: reverting recent changes Revision Changes Path 1.7 +7 -7 xml-cocoon2/src/blocks/databases/java/org/apache/cocoon/transformation/SQLTransformer.java Index: SQLTransformer.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/blocks/databases/java/org/apache/cocoon/transformation/SQLTransformer.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -b -u -r1.6 -r1.7 --- SQLTransformer.java 9 Jan 2003 14:18:33 -0000 1.6 +++ SQLTransformer.java 9 Jan 2003 17:09:42 -0000 1.7 @@ -143,13 +143,13 @@ // /** Is the old-driver turned on? (default is off) */ - boolean oldDriver = false; + private boolean oldDriver = false; /** How many connection attempts to do? (default is 5 times) */ - int connectAttempts = 5; + private int connectAttempts = 5; /** How long wait between connection attempts? (default is 5000 ms) */ - int connectWaittime = 5; + private int connectWaittime = 5; // // State @@ -767,7 +767,7 @@ /** * Helper method for generating SAX events */ - void start( String name, AttributesImpl attr ) + private void start( String name, AttributesImpl attr ) throws SAXException { try { super.startTransformingElement( outUri, name, nsQualify( name, outPrefix ), attr ); @@ -782,7 +782,7 @@ /** * Helper method for generating SAX events */ - void end( String name ) throws SAXException { + private void end( String name ) throws SAXException { try { super.endTransformingElement( outUri, name, nsQualify( name, outPrefix ) ); } catch (IOException ioe) { @@ -795,7 +795,7 @@ /** * Helper method for generating SAX events */ - void data( String data ) throws SAXException { + private void data( String data ) throws SAXException { if ( data != null ) { super.characters( data.toCharArray(), 0, data.length() ); }
---------------------------------------------------------------------- In case of troubles, e-mail: [EMAIL PROTECTED] To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]