Index: trunk/Nebulous-Server/lib/Nebulous/Server/Config.pm
===================================================================
--- trunk/Nebulous-Server/lib/Nebulous/Server/Config.pm	(revision 4874)
+++ trunk/Nebulous-Server/lib/Nebulous/Server/Config.pm	(revision 10628)
@@ -1,5 +1,5 @@
 # Copyright (C) 2005  Joshua Hoblitt
 #
-# $Id: Config.pm,v 1.1 2005-08-25 01:44:32 jhoblitt Exp $
+# $Id: Config.pm,v 1.2 2006-12-12 00:06:27 jhoblitt Exp $
 
 package Nebulous::Server::Config;
@@ -8,5 +8,5 @@
 use warnings FATAL => qw( all );
 
-our $VERSION = 0.01;
+our $VERSION = 0.02;
 
 use base qw( Class::Accessor::Fast );
@@ -14,6 +14,4 @@
 use Nebulous::Util qw( %LEVELS );
 use Params::Validate qw( validate SCALAR );
-
-my $_instance;
 
 my $new_validate = {
@@ -47,19 +45,5 @@
     bless $self, $class || ref $class;
 
-    $_instance = $self;
-
     return $self;
-}
-
-# orginaly lifted from Class::Singleton and modified to return undef unless the
-# singleton has been initialized.
-
-sub instance {
-    my $class = shift;
-
-    die "not configured" unless defined $_instance;
-
-#return defined $_instance ? $_instance : undef;
-    return $_instance;
 }
 
