Merge "Check the version of format options before writing."

main
Ken Wakasa 2013-09-10 10:01:12 +00:00 committed by Android (Google) Code Review
commit 40e91e4582
1 changed files with 6 additions and 0 deletions

View File

@ -68,6 +68,12 @@ public class Ver3DictEncoder implements DictEncoder {
@Override @Override
public void writeDictionary(final FusionDictionary dict, final FormatOptions formatOptions) public void writeDictionary(final FusionDictionary dict, final FormatOptions formatOptions)
throws IOException, UnsupportedFormatException { throws IOException, UnsupportedFormatException {
if (formatOptions.mVersion > 3) {
throw new UnsupportedFormatException(
"The given format options has wrong version number : "
+ formatOptions.mVersion);
}
if (mOutStream == null) { if (mOutStream == null) {
openStream(); openStream();
} }