remove definition subroutine from these already converted assets.

This commit is contained in:
Colin Kuskie 2010-02-11 16:40:09 -08:00
parent 35969446a1
commit 2cb4bc45b8
6 changed files with 0 additions and 153 deletions

View file

@ -95,33 +95,6 @@ These methods are available from this class:
=cut
#-------------------------------------------------------------------
=head2 definition ( definition )
Defines the properties of this asset.
=head3 definition
A hash reference passed in from a subclass definition.
=cut
sub definition {
my $class = shift;
my $session = shift;
my $definition = shift;
my %properties;
tie %properties, 'Tie::IxHash';
my $i18n = WebGUI::International->new($session,'Asset_SyndicatedContent');
%properties = (
);
push(@{$definition}, {
properties=>\%properties
});
return $class->next::method($session, $definition);
}
#-------------------------------------------------------------------
=head2 generateFeed ()