Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2013-10-30 13:05:51 +0000
committerDani Megert2013-10-30 13:05:51 +0000
commit9788d0f08d476c61932a3efe4d19805ba490d56d (patch)
treeb8e0a206175b772521b73edea852fcbbc8e50cae /org.eclipse.jface.text
parentd20d2f31690f0455be41b288f0b02f4582835c1f (diff)
downloadeclipse.platform.text-9788d0f08d476c61932a3efe4d19805ba490d56d.tar.gz
eclipse.platform.text-9788d0f08d476c61932a3efe4d19805ba490d56d.tar.xz
eclipse.platform.text-9788d0f08d476c61932a3efe4d19805ba490d56d.zip
Diffstat (limited to 'org.eclipse.jface.text')
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/CompletionProposalPopup.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/CompletionProposalPopup.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/CompletionProposalPopup.java
index b748eabe4f1..c07cc683799 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/CompletionProposalPopup.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/CompletionProposalPopup.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2012 IBM Corporation and others.
+ * Copyright (c) 2000, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -152,6 +152,8 @@ class CompletionProposalPopup implements IContentAssistListener {
if (selectionIndex < 0)
selectionIndex= itemCount - 1;
break;
+ default:
+ break;
}
selectProposal(selectionIndex, false);
return null;

Back to the top