~ubuntu-branches/ubuntu/utopic/libcommons-compress-java/utopic

« back to all changes in this revision

Viewing changes to src/main/java/org/apache/commons/compress/compressors/pack200/Pack200CompressorOutputStream.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2013-11-02 13:55:47 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20131102135547-nhcubj3ae7rv6t13
Tags: 1.6-1
* New upstream release
* Updated Standards-Version to 3.9.5 (no changes)
* Build depend on debhelper >= 9
* Removed the unused debian/orig-tar.sh script

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
        properties = props;
82
82
    }
83
83
 
84
 
    /** {@inheritDoc} */
85
84
    @Override
86
85
    public void write(int b) throws IOException {
87
86
        streamBridge.write(b);
88
87
    }
89
88
 
90
 
    /**
91
 
     * {@inheritDoc}
92
 
     */
93
89
    @Override
94
90
    public void write(byte[] b) throws IOException {
95
91
        streamBridge.write(b);
96
92
    }
97
93
 
98
 
    /**
99
 
     * {@inheritDoc}
100
 
     */
101
94
    @Override
102
95
    public void write(byte[] b, int from, int length) throws IOException {
103
96
        streamBridge.write(b, from, length);