Lightning browser with I2P configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

28 lines
583 B

/*
* Copyright 2014 A.C.R. Development
*/
package acr.browser.lightning;
public class SettingsController {
private static boolean clearHistory;
/**
* The purpose of this class is so that I can clear the dropdown history in the main activities if the user selects
* to clear the history from the disk in advanced settings
*/
public static void setClearHistory(boolean choice) {
clearHistory = choice;
}
/**
* return the choice
*/
public static boolean getClearHistory() {
if (clearHistory) {
clearHistory = false;
return true;
}
return false;
}
}