~ubuntu-branches/ubuntu/trusty/png-sixlegs/trusty

« back to all changes in this revision

Viewing changes to src/main/com/sixlegs/image/png/Chunk_IDAT.java

  • Committer: Package Import Robot
  • Author(s): Ying-Chun Liu (PaulLiu)
  • Date: 2012-05-18 03:14:11 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120518031411-b1iutqskocxf6t5j
Tags: 2.0-1
* New upstream release
* Update debian/watch to match the current upstream link
* Update README.Debian for repack information
* debian/rules: modify to generate javadoc

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// Copyright (C) 1998-2004 Chris Nokleberg
2
 
// Please see included LICENSE.TXT
3
 
 
4
 
package com.sixlegs.image.png;
5
 
 
6
 
final class Chunk_IDAT
7
 
extends Chunk
8
 
{
9
 
    Chunk_IDAT()
10
 
    {
11
 
        super(IDAT);
12
 
    }
13
 
 
14
 
    protected void readData()
15
 
    { }
16
 
}
17