Merge change 20729 into donut

* changes:
  Fix the bug that EXIF attributes are always cached.
This commit is contained in:
Android (Google) Code Review
2009-08-11 08:54:10 -07:00

View File

@@ -128,7 +128,10 @@ public class ExifInterface {
}
public void setFilename(String filename) {
mFilename = filename;
if (mFilename == null || !mFilename.equals(filename)) {
mFilename = filename;
mCachedAttributes = null;
}
}
/**