remove references to DXCluster.pm
[spider.git] / cmd / stat / cluster.pl
diff --git a/cmd/stat/cluster.pl b/cmd/stat/cluster.pl
deleted file mode 100644 (file)
index 539a113..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#
-# show a cluster thingy
-#
-# $Id$
-#
-
-my ($self, $line) = @_;
-my @list = split /\s+/, $line;               # generate a list of callsigns
-@list = ($self->call) if !@list;  # my channel if no callsigns
-
-my $call;
-my @out;
-foreach $call (@list) {
-  $call = uc $call;
-  my $ref = DXCluster->get_exact($call);
-  if ($ref) {
-    @out = print_all_fields($self, $ref, "Cluster Information $call");
-  } else {
-    push @out, "Cluster: $call not found";
-  }
-  push @out, "" if @list > 1;
-}
-
-return (1, @out);