class ChunkyPNG::Chunk::Generic

def self.read(type, content)

def self.read(type, content)
  self.new(type, content)
end

def initialize(type, content = '')

def initialize(type, content = '')
  super(type, :content => content)
end