Skip to main content
summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorJonah Graham2018-11-22 20:34:25 +0000
committerJonah Graham2018-11-22 20:34:29 +0000
commit871c91ee5e5631ac080750a3643d4f855f5dd5d0 (patch)
tree67d8d17d98ea85c8ac315f9f99c408d209a413ae /llvm
parentc5c5412f8d993fe48dd889b21afe8152f4fe2443 (diff)
downloadorg.eclipse.cdt-871c91ee5e5631ac080750a3643d4f855f5dd5d0.tar.gz
org.eclipse.cdt-871c91ee5e5631ac080750a3643d4f855f5dd5d0.tar.xz
org.eclipse.cdt-871c91ee5e5631ac080750a3643d4f855f5dd5d0.zip
Bug 540373: Fix declaration to interface
This file was always intended to be an interface. The discussion on fixing this happened as part of the review to change I240bbe08666b89861fe132c6384174be7883c022 Change-Id: I7ddd211f927f7089ed40abdf578ae10c0c437329
Diffstat (limited to 'llvm')
-rw-r--r--llvm/org.eclipse.cdt.llvm.dsf.lldb.core/src/org/eclipse/cdt/llvm/dsf/lldb/core/ILLDBLaunchConfigurationConstants.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/org.eclipse.cdt.llvm.dsf.lldb.core/src/org/eclipse/cdt/llvm/dsf/lldb/core/ILLDBLaunchConfigurationConstants.java b/llvm/org.eclipse.cdt.llvm.dsf.lldb.core/src/org/eclipse/cdt/llvm/dsf/lldb/core/ILLDBLaunchConfigurationConstants.java
index a23f849ee88..95447f4d733 100644
--- a/llvm/org.eclipse.cdt.llvm.dsf.lldb.core/src/org/eclipse/cdt/llvm/dsf/lldb/core/ILLDBLaunchConfigurationConstants.java
+++ b/llvm/org.eclipse.cdt.llvm.dsf.lldb.core/src/org/eclipse/cdt/llvm/dsf/lldb/core/ILLDBLaunchConfigurationConstants.java
@@ -20,7 +20,7 @@ import org.eclipse.cdt.llvm.dsf.lldb.core.internal.LLDBCorePlugin;
*
* @noimplement This interface is not intended to be implemented by clients.
*/
-public class ILLDBLaunchConfigurationConstants {
+public interface ILLDBLaunchConfigurationConstants {
/**
* Launch configuration attribute key. The value is the name of

Back to the top