Author: britter
Date: Sun Jan 4 21:01:58 2015
New Revision: 1649418
URL: http://svn.apache.org/r1649418
Log:
Remove unused methods
Modified:
commons/proper/imaging/trunk/src/test/java/org/apache/commons/imaging/formats/jpeg/exif/ExifBaseTest.java
Modified:
commons/proper/imaging/trunk/src/test/java/org/apache/commons/imaging/formats/jpeg/exif/ExifBaseTest.java
URL:
http://svn.apache.org/viewvc/commons/proper/imaging/trunk/src/test/java/org/apache/commons/imaging/formats/jpeg/exif/ExifBaseTest.java?rev=1649418&r1=1649417&r2=1649418&view=diff
==============================================================================
---
commons/proper/imaging/trunk/src/test/java/org/apache/commons/imaging/formats/jpeg/exif/ExifBaseTest.java
(original)
+++
commons/proper/imaging/trunk/src/test/java/org/apache/commons/imaging/formats/jpeg/exif/ExifBaseTest.java
Sun Jan 4 21:01:58 2015
@@ -64,22 +64,8 @@ public abstract class ExifBaseTest exten
return getTestImages(HAS_EXIF_IMAGE_FILTER);
}
- protected static List<File> getImagesWithExifData(final int max) throws
IOException,
- ImageReadException {
- return getTestImages(HAS_EXIF_IMAGE_FILTER, max);
- }
-
- protected File getJpegImage() throws IOException, ImageReadException {
- return getTestImage(JPEG_IMAGE_FILTER);
- }
-
protected static List<File> getJpegImages() throws IOException,
ImageReadException {
return getTestImages(JPEG_IMAGE_FILTER);
}
- protected List<File> getJpegImages(final int max) throws IOException,
- ImageReadException {
- return getTestImages(JPEG_IMAGE_FILTER, max);
- }
-
}