mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-08-28 13:50:22 -05:00
Android: Prevent instantiation of utility classes
This commit is contained in:
@@ -53,6 +53,11 @@ public final class NativeLibrary
|
||||
public static final int PRESSED = 1;
|
||||
}
|
||||
|
||||
private NativeLibrary()
|
||||
{
|
||||
// Disallows instantiation.
|
||||
}
|
||||
|
||||
/**
|
||||
* Default touchscreen device
|
||||
*/
|
||||
|
||||
@@ -21,6 +21,11 @@ import android.preference.PreferenceManager;
|
||||
*/
|
||||
public final class UserPreferences
|
||||
{
|
||||
private UserPreferences()
|
||||
{
|
||||
// Disallows instantiation.
|
||||
}
|
||||
|
||||
/**
|
||||
* Loads the settings stored in the Dolphin ini config files to the shared preferences of this front-end.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user