From c5bd4a1af4885e150679ea2b07981525ca50db1e Mon Sep 17 00:00:00 2001 From: aaron Date: Mon, 23 Mar 2009 21:04:11 +0000 Subject: [PATCH] made the class that we pull fields from of type Object, so we can use any class (that has the specified fields). git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@159 348d0f76-0448-11de-a6fe-93d51630548a --- .../broadinstitute/sting/utils/cmdLine/ArgumentParser.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/java/src/org/broadinstitute/sting/utils/cmdLine/ArgumentParser.java b/core/java/src/org/broadinstitute/sting/utils/cmdLine/ArgumentParser.java index a1c411691..e5591017a 100644 --- a/core/java/src/org/broadinstitute/sting/utils/cmdLine/ArgumentParser.java +++ b/core/java/src/org/broadinstitute/sting/utils/cmdLine/ArgumentParser.java @@ -44,9 +44,9 @@ public class ArgumentParser { protected static Logger logger = Logger.getLogger(ArgumentParser.class); // the reference to the command line program to fill in - CommandLineProgram prog; + Object prog; - public ArgumentParser(String programName, CommandLineProgram prog) { + public ArgumentParser(String programName, Object prog) { this.programName = programName; this.prog = prog; }