ExifInterface: Provide backward compatibility
am: 2dbe166801
Change-Id: I53f2bfb056d955c6693cb65c9cb9a21859ff7535
This commit is contained in:
@@ -1557,16 +1557,13 @@ public class ExifInterface {
|
||||
* <p>
|
||||
* This method is only supported for JPEG files.
|
||||
* </p>
|
||||
*
|
||||
* @throws UnsupportedOperationException If this method is called with unsupported files.
|
||||
*/
|
||||
public void saveAttributes() throws IOException {
|
||||
if (!mIsSupportedFile || mIsRaw) {
|
||||
throw new UnsupportedOperationException(
|
||||
"ExifInterface only supports saving attributes on JPEG formats.");
|
||||
throw new IOException("ExifInterface only supports saving attributes on JPEG formats.");
|
||||
}
|
||||
if (mIsInputStream || (mSeekableFileDescriptor == null && mFilename == null)) {
|
||||
throw new UnsupportedOperationException(
|
||||
throw new IOException(
|
||||
"ExifInterface does not support saving attributes for the current input.");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user