equal
deleted
inserted
replaced
85 if(value==null) return; |
85 if(value==null) return; |
86 if(properties==null) properties=new java.util.Hashtable<>(); |
86 if(properties==null) properties=new java.util.Hashtable<>(); |
87 properties.put(key,value); |
87 properties.put(key,value); |
88 } |
88 } |
89 private void property(String key,float value) { |
89 private void property(String key,float value) { |
90 property(key,new Float(value)); |
90 property(key, Float.valueOf(value)); |
91 } |
91 } |
92 private final void pngassert(boolean b) throws IOException { |
92 private final void pngassert(boolean b) throws IOException { |
93 if(!b) { |
93 if(!b) { |
94 PNGException e = new PNGException("Broken file"); |
94 PNGException e = new PNGException("Broken file"); |
95 e.printStackTrace(); |
95 e.printStackTrace(); |