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

Commit af741bf9 authored by Chet Haase's avatar Chet Haase Committed by Android (Google) Code Review
Browse files

Merge "Change exception thrown when set() called on readonly Property."

parents 4233bc89 accb54c5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -128,7 +128,7 @@ class ReflectiveProperty<T, V> extends Property<T, V> {
                throw new AssertionError();
            }
        } else {
            throw new NoSuchPropertyException("Property is read-only; set() is not implemented");
            throw new UnsupportedOperationException("Property " + getName() +" is read-only");
        }
    }