mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2026-04-30 00:00:01 -04:00
Removed debug output accidentally committed.
Fixed a test.
This commit is contained in:
+3
-3
@@ -73,8 +73,8 @@ public class JPEGSegmentTest extends ObjectAbstractTestCase {
|
||||
|
||||
@Override
|
||||
protected Object makeObject() {
|
||||
byte[] bytes = new byte[14];
|
||||
System.arraycopy("JFIF".getBytes(Charset.forName("ascii")), 0, bytes, 0, 4);
|
||||
return new JPEGSegment(0xFFE0, bytes);
|
||||
byte[] bytes = new byte[11];
|
||||
System.arraycopy("Exif".getBytes(Charset.forName("ascii")), 0, bytes, 0, 4);
|
||||
return new JPEGSegment(0xFFE1, bytes);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user