Refactor Preferences to ORPreferences

This commit is contained in:
SiboVG 2024-07-21 23:16:09 +02:00
parent bb9e17d0b4
commit 8bf63fff0c
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ import info.openrocket.core.util.MathUtil;
import info.openrocket.core.util.StateChangeListener;
import info.openrocket.core.util.UniqueID;
public abstract class ApplicationPreferences implements ChangeSource, Preferences {
public abstract class ApplicationPreferences implements ChangeSource, ORPreferences {
private static final String SPLIT_CHARACTER = "|";
/*

View File

@ -1,6 +1,6 @@
package info.openrocket.core.preferences;
public interface Preferences {
public interface ORPreferences {
boolean getBoolean(String key, boolean defaultValue);
void putBoolean(String key, boolean value);