Set boot digest via resetprop (#22)

The stub method `SystemProperties.set` has wrong signature and is unable to set read-only system properties.
This commit is contained in:
JingMatrix
2025-11-28 13:11:54 +01:00
committed by GitHub
parent 22cbe5a9a7
commit 4f608247fe
2 changed files with 18 additions and 7 deletions
@@ -4,8 +4,4 @@ public class SystemProperties {
public static String get(String key, String def) {
throw new UnsupportedOperationException("STUB!");
}
public static String set(String key, String val) {
throw new UnsupportedOperationException("STUB!");
}
}