Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9615a578 authored by Neil Fuller's avatar Neil Fuller Committed by Gerrit Code Review
Browse files

Merge "Remove identifier that causes warnings under OpenJDK 8 compiler"

parents 8f799629 d717d188
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -145,7 +145,7 @@ public class EncodedStringValue implements Cloneable {
            	}
            	try {
                    return new String(mData, CharacterSets.MIMENAME_ISO_8859_1);
                } catch (UnsupportedEncodingException _) {
                } catch (UnsupportedEncodingException e2) {
                    return new String(mData); // system default encoding.
                }
            }
@@ -216,7 +216,7 @@ public class EncodedStringValue implements Cloneable {
            try {
                ret[i] = new EncodedStringValue(mCharacterSet,
                        temp[i].getBytes());
            } catch (NullPointerException _) {
            } catch (NullPointerException e) {
                // Can't arrive here
                return null;
            }