diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/OpenFromArguments.java b/Core/src/org/sleuthkit/autopsy/casemodule/OpenFromArguments.java deleted file mode 100644 index 91148673f5..0000000000 --- a/Core/src/org/sleuthkit/autopsy/casemodule/OpenFromArguments.java +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Autopsy Forensic Browser - * - * Copyright 2014 Basis Technology Corp. - * Contact: carrier sleuthkit org - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.sleuthkit.autopsy.casemodule; - -import java.util.HashSet; -import java.util.Map; -import java.util.Set; -import org.netbeans.api.sendopts.CommandException; -import org.netbeans.spi.sendopts.Env; -import org.netbeans.spi.sendopts.Option; -import org.netbeans.spi.sendopts.OptionProcessor; -import org.openide.util.lookup.ServiceProvider; - -/** - * Allows Autopsy to get path to .aut file passed in via associating the file - * type in Windows. - */ -@ServiceProvider(service = OptionProcessor.class) -public class OpenFromArguments extends OptionProcessor { - - /* - * Stores the .aut file if it was passed in as argument - */ - private String autPath = ""; - private final Option option1 = Option.defaultArguments(); - - @Override - protected Set