rt 4.2.13 ticket#13852
[freeside.git] / rt / lib / RT / Principals.pm
index 2f1793d..b909d24 100644 (file)
@@ -2,7 +2,7 @@
 #
 # COPYRIGHT:
 #
-# This software is Copyright (c) 1996-2015 Best Practical Solutions, LLC
+# This software is Copyright (c) 1996-2016 Best Practical Solutions, LLC
 #                                          <sales@bestpractical.com>
 #
 # (Except where explicitly superseded by other copyright notices)
@@ -70,10 +70,10 @@ use strict;
 use warnings;
 
 
-use RT::Principal;
-
 use base 'RT::SearchBuilder';
 
+use RT::Principal;
+
 sub Table { 'Principals'}
 
 sub _Init {
@@ -82,17 +82,6 @@ sub _Init {
     return ( $self->SUPER::_Init(@_) );
 }
 
-
-=head2 NewItem
-
-Returns an empty new RT::Principal item
-
-=cut
-
-sub NewItem {
-    my $self = shift;
-    return(RT::Principal->new($self->CurrentUser));
-}
 RT::Base->_ImportOverlays();
 
 1;