diff options
author | Mickael Istria | 2019-03-02 20:46:54 +0000 |
---|---|---|
committer | Andrey Loskutov | 2019-03-05 08:11:25 +0000 |
commit | 6c60b84d03bb78c253650de64a61b6a8219315c3 (patch) | |
tree | d0df3b6280f5cfcd5f46108a5323ffaad6d8add6 /org.eclipse.jface.text.tests/META-INF/MANIFEST.MF | |
parent | 29cf1e467edacd40d6c06f84f5a193541db9a274 (diff) | |
download | eclipse.platform.text-6c60b84d03bb78c253650de64a61b6a8219315c3.tar.gz eclipse.platform.text-6c60b84d03bb78c253650de64a61b6a8219315c3.tar.xz eclipse.platform.text-6c60b84d03bb78c253650de64a61b6a8219315c3.zip |
Bug 540143 - StackOverflowError with async content-assist
A long running failing completion proposal cause StackOverflowError
because it's completion state isn't retrieved correctly so the
ContentAssistant assume it's not done.
Instead, detect the error case and return future normally (error will be
logged in console).
Change-Id: I82dc511fdcbc7c61f1e575f975ef221e5d0ac160
Signed-off-by: Mickael Istria <mistria@redhat.com>
Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
Diffstat (limited to 'org.eclipse.jface.text.tests/META-INF/MANIFEST.MF')
-rw-r--r-- | org.eclipse.jface.text.tests/META-INF/MANIFEST.MF | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.jface.text.tests/META-INF/MANIFEST.MF b/org.eclipse.jface.text.tests/META-INF/MANIFEST.MF index b6794013e..cdd9a2077 100644 --- a/org.eclipse.jface.text.tests/META-INF/MANIFEST.MF +++ b/org.eclipse.jface.text.tests/META-INF/MANIFEST.MF @@ -7,6 +7,7 @@ Bundle-Vendor: %Plugin.providerName Bundle-Localization: plugin Export-Package: org.eclipse.jface.text.tests, + org.eclipse.jface.text.tests.contentassist, org.eclipse.jface.text.tests.reconciler, org.eclipse.jface.text.tests.rules, org.eclipse.jface.text.tests.source, |