summaryrefslogtreecommitdiff
path: root/bin/ChangeLogEditor/FileLocator.pm
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ChangeLogEditor/FileLocator.pm')
-rw-r--r--bin/ChangeLogEditor/FileLocator.pm39
1 files changed, 0 insertions, 39 deletions
diff --git a/bin/ChangeLogEditor/FileLocator.pm b/bin/ChangeLogEditor/FileLocator.pm
deleted file mode 100644
index 7b768863a22..00000000000
--- a/bin/ChangeLogEditor/FileLocator.pm
+++ /dev/null
@@ -1,39 +0,0 @@
-package FileLocator;
-
-# ************************************************************
-# Description : Base class for file locators.
-# Author : Chad Elliott
-# Create Date : 6/18/2002
-# ************************************************************
-
-# ************************************************************
-# Pragmas
-# ************************************************************
-
-use strict;
-use FileHandle;
-
-# ************************************************************
-# Subroutine Section
-# ************************************************************
-
-sub new {
- my($class) = shift;
- my($self) = bless {
- }, $class;
- return $self;
-}
-
-
-sub locate {
- my($self) = shift;
- my(@dirs) = @_;
- my(@modified) = ();
- my(@removed) = ();
- my(@conflicts) = ();
- my(@unknown) = ();
- return \@modified, \@removed, \@conflicts, \@unknown;
-}
-
-
-1;