summaryrefslogtreecommitdiff
path: root/fml/lib/IO/Adapter/UnixGroup.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-01-28 11:56:48 +0000
committerfukachan <fukachan>2001-01-28 11:56:48 +0000
commit68303690d7da5fe9359aa8704c7c6fe3814f87cd (patch)
tree476b45f662c6603778100466a75a4d738f6e63ed /fml/lib/IO/Adapter/UnixGroup.pm
parente168194535836204b1c2c2e5d9774ad7e151c020 (diff)
downloadfml8-68303690d7da5fe9359aa8704c7c6fe3814f87cd.tar.gz
fml8-68303690d7da5fe9359aa8704c7c6fe3814f87cd.tar.bz2
fml8-68303690d7da5fe9359aa8704c7c6fe3814f87cd.zip
nuke since not used
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;