Author: spadkins
Date: Wed Apr 25 07:58:50 2007
New Revision: 9450

Modified:
   p5ee/trunk/App-Context/lib/App/SessionObject.pm

Log:
remove dump() method so we can just use the Service.dump() method

Modified: p5ee/trunk/App-Context/lib/App/SessionObject.pm
==============================================================================
--- p5ee/trunk/App-Context/lib/App/SessionObject.pm     (original)
+++ p5ee/trunk/App-Context/lib/App/SessionObject.pm     Wed Apr 25 07:58:50 2007
@@ -704,33 +704,6 @@
 }
 
 #############################################################################
-# Method: dump()
-#############################################################################
-
-=head2 dump()
-
-    * Signature: $text = $self->dump();
-    * Param:     void
-    * Return:    $text           text
-    * Throws:    App::Exception
-    * Since:     0.01
-
-    $text = $session_object->dump();
-
-=cut
-
-use Data::Dumper;
-
-sub dump {
-    &App::sub_entry if ($App::trace);
-    my $self = shift;
-    my $d = Data::Dumper->new([ $self ], [ "session_object" ]);
-    $d->Indent(1);
-    $d->Dump();
-    &App::sub_exit() if ($App::trace);
-}
-
-#############################################################################
 # Method: print()
 #############################################################################
 

Reply via email to