Misc formatting

This commit is contained in:
Timothy Warren 2012-03-27 10:57:42 -04:00
parent 5ffdaca762
commit fcd7ab58a8
2 changed files with 6 additions and 3 deletions

View File

@ -34,9 +34,10 @@ class Settings {
} }
/** /**
* Load the settings file * Load the settings file - private so it can't be loaded
* directly - the settings should be safe!
*/ */
protected function __construct() private function __construct()
{ {
$path = SETTINGS_DIR.'/settings.json'; $path = SETTINGS_DIR.'/settings.json';
@ -59,6 +60,8 @@ class Settings {
} }
// --------------------------------------------------------------------------
/** /**
* Output the settings on destruct * Output the settings on destruct
*/ */

View File

@ -350,6 +350,6 @@ class DB_Info_Widget extends GtkTable {
*/ */
private function _validate() private function _validate()
{ {
// @todo Implement
} }
} }