From 60e32477d02059eb22808c6d14bba2afd30c6ca0 Mon Sep 17 00:00:00 2001 From: Martin Weber Date: Sat, 15 Aug 2020 16:55:03 +0200 Subject: [PATCH] Remove unused file. Unused since bug 559674: Integrate new indexer support into CDT build Change-Id: Ifd4878f944eff6f12e3ab2df399c619abfa47f59 Signed-off-by: Martin Weber --- .../cmake/core/internal/CompileCommand.java | 31 ------------------- 1 file changed, 31 deletions(-) delete mode 100644 build/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/internal/CompileCommand.java diff --git a/build/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/internal/CompileCommand.java b/build/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/internal/CompileCommand.java deleted file mode 100644 index 81e7e95187a..00000000000 --- a/build/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/internal/CompileCommand.java +++ /dev/null @@ -1,31 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2016 QNX Software Systems and others. - * - * This program and the accompanying materials - * are made available under the terms of the Eclipse Public License 2.0 - * which accompanies this distribution, and is available at - * https://www.eclipse.org/legal/epl-2.0/ - * - * SPDX-License-Identifier: EPL-2.0 - *******************************************************************************/ -package org.eclipse.cdt.cmake.core.internal; - -public class CompileCommand { - - private String directory; - private String command; - private String file; - - public String getDirectory() { - return directory; - } - - public String getCommand() { - return command; - } - - public String getFile() { - return file; - } - -}