Remove unsued mutable method in radio service

Bug: 258034192
Test: com.android.server.broadcastradio
Change-Id: Ic0330dc6953da0eda4e8cf5ac0f8e6e550448768
This commit is contained in:
Weilin Xu
2022-11-14 21:24:26 +00:00
parent 5c0c1f5ff3
commit e804d4a3ae

View File

@@ -34,13 +34,4 @@ final class Mutable<E> {
public Mutable() {
value = null;
}
/**
* Initialize value with specific value.
*
* @param value initial value.
*/
public Mutable(E value) {
this.value = value;
}
}