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

Commit accb54c5 authored by Chet Haase's avatar Chet Haase
Browse files

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

Change-Id: I2669e32691c93dfaf07c34ca4d9fe5c6d47d5480
parent 9eb58477
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");
        }
    }