~ubuntu-branches/ubuntu/vivid/cglib/vivid-proposed

« back to all changes in this revision

Viewing changes to src/proxy/net/sf/cglib/transform/AbstractTransformTask.java

  • Committer: Package Import Robot
  • Author(s): Damien Raude-Morvan
  • Date: 2011-11-01 22:05:40 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20111101220540-k68c9ybx884yzfte
Tags: 2.2.2+dfsg-1
* New upstream release.
* Bump Standards-Version to 3.9.2: no changes needed.
* d/copyright: Use DEP-5 format.
* d/rules: Enable unit testing.
* d/patches/04_skiptests_ParallelSorter.diff: Skip some failing test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
137
137
            
138
138
            ZipInputStream zip = new ZipInputStream(new FileInputStream(file));
139
139
            try {
140
 
                FileOutputStream fout = new FileOutputStream(tempFile, false);
 
140
                FileOutputStream fout = new FileOutputStream(tempFile);
141
141
                try{
142
142
                 ZipOutputStream out = new ZipOutputStream(fout);
143
143