Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoopur Gupta2017-03-01 19:23:07 +0000
committerNoopur Gupta2017-03-01 19:23:07 +0000
commit93fd2c349838f0b489bdba7f0743db20b1118f4d (patch)
tree6c1a5128a11b802b1d74ec468e9f341f608137f1
parent82a3072b22d4d434b33e7166630e0ce2e8ac7d4d (diff)
downloadeclipse.jdt.ui-93fd2c349838f0b489bdba7f0743db20b1118f4d.tar.gz
eclipse.jdt.ui-93fd2c349838f0b489bdba7f0743db20b1118f4d.tar.xz
eclipse.jdt.ui-93fd2c349838f0b489bdba7f0743db20b1118f4d.zip
Fixed bug 489363: [content assist] Inconsistent ordering of contentI20170305-2000I20170304-2000I20170303-2000I20170302-2000I20170301-2000
assist proposals Change-Id: I0583d5fc70b82f957b89c6d0137d71f353781b6e
-rw-r--r--org.eclipse.jdt.ui/plugin.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/org.eclipse.jdt.ui/plugin.xml b/org.eclipse.jdt.ui/plugin.xml
index c1de6345a0..b37bd48ab1 100644
--- a/org.eclipse.jdt.ui/plugin.xml
+++ b/org.eclipse.jdt.ui/plugin.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<!-- ====================================================================== -->
-<!-- Copyright (c) 2000, 2016 IBM Corporation and others. -->
+<!-- Copyright (c) 2000, 2017 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 -->
@@ -290,7 +290,8 @@
id="JavaNoTypeCompletionProposalComputer">
<javaCompletionProposalComputer
class="org.eclipse.jdt.internal.ui.text.java.JavaNoTypeCompletionProposalComputer"
- categoryId="org.eclipse.jdt.ui.javaNoTypeProposalCategory">
+ categoryId="org.eclipse.jdt.ui.javaNoTypeProposalCategory"
+ needsSortingAfterFiltering="true">
<partition type="__dftl_partition_content_type"/>
<partition type="__java_string"/>
</javaCompletionProposalComputer>

Back to the top