summaryrefslogtreecommitdiff
path: root/fml/lib/IO/Adapter/UnixGroup.pm
diff options
context:
space:
mode:
Diffstat (limited to 'fml/lib/IO/Adapter/UnixGroup.pm')
-rw-r--r--fml/lib/IO/Adapter/UnixGroup.pm67
1 files changed, 0 insertions, 67 deletions
diff --git a/fml/lib/IO/Adapter/UnixGroup.pm b/fml/lib/IO/Adapter/UnixGroup.pm
deleted file mode 100644
index 775e50f9..00000000
--- a/fml/lib/IO/Adapter/UnixGroup.pm
+++ /dev/null
@@ -1,67 +0,0 @@
-#-*- perl -*-
-#
-# Copyright (C) 2001 Ken'ichi Fukamachi
-# All rights reserved. This program is free software; you can
-# redistribute it and/or modify it under the same terms as Perl itself.
-#
-# $Id$
-# $FML$
-#
-
-package IO::Adapter::UnixGroup;
-use strict;
-use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD);
-use Carp;
-
-require Exporter;
-@ISA = qw(Exporter);
-
-
-sub new
-{
- my ($self) = @_;
- my ($type) = ref($self) || $self;
- my $me = {};
- return bless $me, $type;
-}
-
-
-#####
-##### This is just a dummy yet now.
-#####
-
-
-=head1 NAME
-
-IO::Adapter::UnixGroup.pm - what is this
-
-=head1 SYNOPSIS
-
-=head1 DESCRIPTION
-
-=head1 CLASSES
-
-=head1 METHODS
-
-=item C<new()>
-
-... what is this ...
-
-=head1 AUTHOR
-
-Ken'ichi Fukamachi
-
-=head1 COPYRIGHT
-
-Copyright (C) 2001 Ken'ichi Fukamachi
-
-All rights reserved. This program is free software; you can
-redistribute it and/or modify it under the same terms as Perl itself.
-
-=head1 HISTORY
-
-IO::Adapter::UnixGroup.pm appeared in fml5.
-
-=cut
-
-1;