Author: ozeigermann
Date: Sat Jul 28 14:51:54 2007
New Revision: 560630

URL: http://svn.apache.org/viewvc?view=rev&rev=560630
Log:
Forwarded append paramenter for write

Modified:
    
jakarta/commons/proper/transaction/branches/TRANSACTION_2/src/java/org/apache/commons/transaction/file/FileResourceManager.java

Modified: 
jakarta/commons/proper/transaction/branches/TRANSACTION_2/src/java/org/apache/commons/transaction/file/FileResourceManager.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/transaction/branches/TRANSACTION_2/src/java/org/apache/commons/transaction/file/FileResourceManager.java?view=diff&rev=560630&r1=560629&r2=560630
==============================================================================
--- 
jakarta/commons/proper/transaction/branches/TRANSACTION_2/src/java/org/apache/commons/transaction/file/FileResourceManager.java
 (original)
+++ 
jakarta/commons/proper/transaction/branches/TRANSACTION_2/src/java/org/apache/commons/transaction/file/FileResourceManager.java
 Sat Jul 28 14:51:54 2007
@@ -220,7 +220,7 @@
 
         public OutputStream writeStream(boolean append) throws 
ResourceException {
             try {
-                FileOutputStream os = new FileOutputStream(file);
+                FileOutputStream os = new FileOutputStream(file, append);
                 return os;
             } catch (IOException e) {
                 throw new ResourceException(e);



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to