Return the path of the url history file
()
| 302 | * Return the path of the url history file |
| 303 | */ |
| 304 | public static String getURLHistoryFile() { |
| 305 | if (getConfigString("history.location", "").length() == 0) { |
| 306 | return getConfigDir() + File.separator + "url_history.txt"; |
| 307 | } else { |
| 308 | return getConfigString("history.location", ""); |
| 309 | } |
| 310 | } |
| 311 | |
| 312 | /** |
| 313 | * Gets the path to the configuration file. |
no test coverage detected