issue_id
int64
2.03k
426k
title
stringlengths
9
251
body
stringlengths
1
32.8k
status
stringclasses
6 values
after_fix_sha
stringlengths
7
7
project_name
stringclasses
6 values
repo_url
stringclasses
6 values
repo_name
stringclasses
6 values
language
stringclasses
1 value
issue_url
null
before_fix_sha
null
pull_url
null
commit_datetime
timestamp[us, tz=UTC]
report_datetime
timestamp[us, tz=UTC]
updated_file
stringlengths
2
187
file_content
stringlengths
0
368k
96,722
Bug 96722 [GlobalActions] Leak: 2 Retarget actions leaked for each Java Editor open/close
N20050525 Open a JavaEditor Close a JavaEditor Repeat For each open / close two org.eclipse.ui.actions.RetargetAction are leaked. The instances remain as they are registered as property change listeners of the action bars
verified fixed
7bfacce
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T09:47:39Z
2005-05-25T22:26:40Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/BasicEditorActionContributor.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
96,722
Bug 96722 [GlobalActions] Leak: 2 Retarget actions leaked for each Java Editor open/close
N20050525 Open a JavaEditor Close a JavaEditor Repeat For each open / close two org.eclipse.ui.actions.RetargetAction are leaked. The instances remain as they are registered as property change listeners of the action bars
verified fixed
7bfacce
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T09:47:39Z
2005-05-25T22:26:40Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/BasicJavaEditorActionContributor.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
91,855
Bug 91855 Duplicate members in JDT views
I20050414-11..-gtk + ZRH export of 20050418 - In a Java5 project, open java.lang.StringBuffer - Note that some of the overloaded append and insert methods appear twice
verified fixed
787b0a6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T09:59:53Z
2005-04-19T08:40:00Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/filters/SyntheticMembersFilter.java
91,855
Bug 91855 Duplicate members in JDT views
I20050414-11..-gtk + ZRH export of 20050418 - In a Java5 project, open java.lang.StringBuffer - Note that some of the overloaded append and insert methods appear twice
verified fixed
787b0a6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T09:59:53Z
2005-04-19T08:40:00Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/MethodsViewer.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
89,917
Bug 89917 [formatter] UI for "Keep empty array initializer on one line" option is confusing
null
verified fixed
5a839a6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T10:06:47Z
2005-04-01T01:46:40Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/BracesTabPage.java
/******************************************************************************* * Copyright (c) 2000, 2004 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, an...
89,917
Bug 89917 [formatter] UI for "Keep empty array initializer on one line" option is confusing
null
verified fixed
5a839a6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T10:06:47Z
2005-04-01T01:46:40Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/ModifyDialogTabPage.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
97,467
Bug 97467 [quick fix] proposals not available for pessimistic repository providers
I have CVS configured to use Watch/Edit. I typed in the following code: PlatformUI.getWorkbench().getHelpSystem().setHelp(parent, IHelpContextIds.SYNC_PREFERENCE_PAGE); The IHelpContextIds interface exists but the constant does not. I then used CTRL-1 to see the option to create the constant but it is not presented. To...
verified fixed
09716ef
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T10:18:52Z
2005-05-31T14:33:20Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/UnresolvedElementsSubProcessor.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
97,507
Bug 97507 [refactoring] Introduce factory fails for bounded type parameters
In RC1. Given class: public class A<T, L extends List<T>> { private L _attribute; A(L list) { _attribute = list; } } Invoke "Introduce Factory" on A. The result is public static <T, L> A<T, L> createA(L list) { return new A<T, L>(list); } The bounds on the type parameters have been lost, so it doesn't compile
verified fixed
7d0454e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T10:37:50Z
2005-05-31T14:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/IntroduceFactory/Bugzilla/97507/CtorTypeArgBounds.java
97,507
Bug 97507 [refactoring] Introduce factory fails for bounded type parameters
In RC1. Given class: public class A<T, L extends List<T>> { private L _attribute; A(L list) { _attribute = list; } } Invoke "Introduce Factory" on A. The result is public static <T, L> A<T, L> createA(L list) { return new A<T, L>(list); } The bounds on the type parameters have been lost, so it doesn't compile
verified fixed
7d0454e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T10:37:50Z
2005-05-31T14:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/IntroduceFactory/Bugzilla/97507/CtorTypeArgBounds_out.java
97,507
Bug 97507 [refactoring] Introduce factory fails for bounded type parameters
In RC1. Given class: public class A<T, L extends List<T>> { private L _attribute; A(L list) { _attribute = list; } } Invoke "Introduce Factory" on A. The result is public static <T, L> A<T, L> createA(L list) { return new A<T, L>(list); } The bounds on the type parameters have been lost, so it doesn't compile
verified fixed
7d0454e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T10:37:50Z
2005-05-31T14:33:20Z
org.eclipse.jdt.ui.tests.refactoring/test
97,507
Bug 97507 [refactoring] Introduce factory fails for bounded type parameters
In RC1. Given class: public class A<T, L extends List<T>> { private L _attribute; A(L list) { _attribute = list; } } Invoke "Introduce Factory" on A. The result is public static <T, L> A<T, L> createA(L list) { return new A<T, L>(list); } The bounds on the type parameters have been lost, so it doesn't compile
verified fixed
7d0454e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T10:37:50Z
2005-05-31T14:33:20Z
cases/org/eclipse/jdt/ui/tests/refactoring/IntroduceFactoryTests.java
97,507
Bug 97507 [refactoring] Introduce factory fails for bounded type parameters
In RC1. Given class: public class A<T, L extends List<T>> { private L _attribute; A(L list) { _attribute = list; } } Invoke "Introduce Factory" on A. The result is public static <T, L> A<T, L> createA(L list) { return new A<T, L>(list); } The bounds on the type parameters have been lost, so it doesn't compile
verified fixed
7d0454e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T10:37:50Z
2005-05-31T14:33:20Z
org.eclipse.jdt.ui/core
97,507
Bug 97507 [refactoring] Introduce factory fails for bounded type parameters
In RC1. Given class: public class A<T, L extends List<T>> { private L _attribute; A(L list) { _attribute = list; } } Invoke "Introduce Factory" on A. The result is public static <T, L> A<T, L> createA(L list) { return new A<T, L>(list); } The bounds on the type parameters have been lost, so it doesn't compile
verified fixed
7d0454e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T10:37:50Z
2005-05-31T14:33:20Z
refactoring/org/eclipse/jdt/internal/corext/refactoring/code/IntroduceFactoryRefactoring.java
98,474
Bug 98474 [refactoring] convert anonymous to nested should use name conventions
20050606 the 'convert anonymous to nested' refactoring doesn't use name conventions and didn't use the 'f' prefix for fields as I configured.
verified fixed
4ef25df
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T13:44:30Z
2005-06-06T09:26:40Z
org.eclipse.jdt.ui/core
98,474
Bug 98474 [refactoring] convert anonymous to nested should use name conventions
20050606 the 'convert anonymous to nested' refactoring doesn't use name conventions and didn't use the 'f' prefix for fields as I configured.
verified fixed
4ef25df
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T13:44:30Z
2005-06-06T09:26:40Z
refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ConvertAnonymousToNestedRefactoring.java
98,327
Bug 98327 [misc] File not saved on disk after "resave" editor context
N20060604-0010 - create project, package, A.java - open A.java in editor - go to OS explorer - delete A.java on disk - go back to workbench and activate editor observe: you get a dialog asking you whether you want to save the content - say yes observe: the dialog claims that the file exists. Strange, since I just delet...
verified fixed
2778e17
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T13:47:46Z
2005-06-03T17:33:20Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitDocumentProvider.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
98,479
Bug 98479 [code manipulation] NPE when canceling creation of linked source folder
RC1 - create new project - go to second page - link source folder. As a target take a folder with lots of sub folders (e.g. Windows, Program Files) - cancel the progress dialog observe: you get the NPW below. java.lang.NullPointerException at org.eclipse.jdt.internal.corext.buildpath.ClasspathModifier.createLinkedSourc...
verified fixed
57e37b4
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T14:05:45Z
2005-06-06T09:26:40Z
org.eclipse.jdt.ui/core
98,479
Bug 98479 [code manipulation] NPE when canceling creation of linked source folder
RC1 - create new project - go to second page - link source folder. As a target take a folder with lots of sub folders (e.g. Windows, Program Files) - cancel the progress dialog observe: you get the NPW below. java.lang.NullPointerException at org.eclipse.jdt.internal.corext.buildpath.ClasspathModifier.createLinkedSourc...
verified fixed
57e37b4
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T14:05:45Z
2005-06-06T09:26:40Z
extension/org/eclipse/jdt/internal/corext/buildpath/ClasspathModifier.java
95,908
Bug 95908 [5.0][content assist] toarray template inserted as content assist method argument guess
null
verified fixed
4a78aa8
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T14:30:25Z
2005-05-19T08:06:40Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/ParameterGuesser.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
97,201
Bug 97201 [content assist] Rendering of inner types in Javadoc code assist wrong
RC1 - code assist after 'Inn'. Label is rendered 'R.Innner', should be Inner. public class R { class Inner { } /** * @see Inn * */ private void foo() { } }
verified fixed
4d1624e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T14:48:31Z
2005-05-30T10:46:40Z
org.eclipse.jdt.ui/ui
97,201
Bug 97201 [content assist] Rendering of inner types in Javadoc code assist wrong
RC1 - code assist after 'Inn'. Label is rendered 'R.Innner', should be Inner. public class R { class Inner { } /** * @see Inn * */ private void foo() { } }
verified fixed
4d1624e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T14:48:31Z
2005-05-30T10:46:40Z
refactoring/org/eclipse/jdt/internal/ui/refactoring/contentassist/CUPositionCompletionProcessor.java
97,201
Bug 97201 [content assist] Rendering of inner types in Javadoc code assist wrong
RC1 - code assist after 'Inn'. Label is rendered 'R.Innner', should be Inner. public class R { class Inner { } /** * @see Inn * */ private void foo() { } }
verified fixed
4d1624e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T14:48:31Z
2005-05-30T10:46:40Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/ProposalInfo.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
97,201
Bug 97201 [content assist] Rendering of inner types in Javadoc code assist wrong
RC1 - code assist after 'Inn'. Label is rendered 'R.Innner', should be Inner. public class R { class Inner { } /** * @see Inn * */ private void foo() { } }
verified fixed
4d1624e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T14:48:31Z
2005-05-30T10:46:40Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/javadoc/JavaDocCompletionEvaluator.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
94,730
Bug 94730 [projection] Nondeterministic folding summary
I20050509-2010 With the CU below: - fold the method declaration -> 'bar()' is shown as summary - unfold again - select the method name 'bar' - type 'foo' - fold the method declaration again -> 'void' is shown as summary "interface Bar { void bar(); } "
verified fixed
759d594
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T16:13:29Z
2005-05-11T14:00:00Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/folding/DefaultJavaFoldingStructureProvider.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
98,679
Bug 98679 [implementation] OperationCanceledException logged when saving externally deleted file
N20050607 (not connected to bug 983279) - no auto-refresh - open Test.java in a Java editor (do not dirty) - externally delete Test.java - return to eclipse -> Msg: file has been deleted - - choose to save - Accept defaults -> Warning: Overwrite File? - press Cancel -> Again: Msg: file has been deleted - choose to save...
verified fixed
5852cdc
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-07T19:58:17Z
2005-06-07T13:13:20Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitDocumentProvider.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
98,887
Bug 98887 All types search job shouldn't create images in non UI thread
RC1 Although SWT supports creating images in non UI threads there is a limitation to it on Motif. When no event loop is active this can result in a deadlock. To avoid this the search job should only create the descriptors and the real image should be fetched in the UI thread.
verified fixed
b8b3cbd
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T08:04:19Z
2005-06-08T08:40:00Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/TypeInfoViewer.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
98,485
Bug 98485 [refactoring] Extract method: only one change offered in preview pane
Against N20050606-0010. In 3.0, the preview pane for Extract Method offered two changes, which the user might individually turn off: 1) "add new method foo" 2) "substitute statement(s) with call to foo" In 3.1, there appears to be only "add new method foo". To prevent confusion, perhaps the description of the change sh...
verified fixed
0011f26
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T08:06:53Z
2005-06-06T09:26:40Z
org.eclipse.jdt.ui/core
98,485
Bug 98485 [refactoring] Extract method: only one change offered in preview pane
Against N20050606-0010. In 3.0, the preview pane for Extract Method offered two changes, which the user might individually turn off: 1) "add new method foo" 2) "substitute statement(s) with call to foo" In 3.1, there appears to be only "add new method foo". To prevent confusion, perhaps the description of the change sh...
verified fixed
0011f26
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T08:06:53Z
2005-06-06T09:26:40Z
refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractMethodRefactoring.java
96,947
Bug 96947 Bad progress reporting on rename method
null
verified fixed
7a0380c
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T08:51:14Z
2005-05-27T10:33:20Z
org.eclipse.jdt.ui/core
96,947
Bug 96947 Bad progress reporting on rename method
null
verified fixed
7a0380c
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T08:51:14Z
2005-05-27T10:33:20Z
refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RenameMethodProcessor.java
96,947
Bug 96947 Bad progress reporting on rename method
null
verified fixed
7a0380c
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T08:51:14Z
2005-05-27T10:33:20Z
org.eclipse.jdt.ui/core
96,947
Bug 96947 Bad progress reporting on rename method
null
verified fixed
7a0380c
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T08:51:14Z
2005-05-27T10:33:20Z
refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RenameVirtualMethodProcessor.java
96,947
Bug 96947 Bad progress reporting on rename method
null
verified fixed
7a0380c
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T08:51:14Z
2005-05-27T10:33:20Z
org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/core/refactoring/PerformChangeOperation.java
/******************************************************************************* * Copyright (c) 2000, 2004 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, an...
98,354
Bug 98354 [nls tooling] Assertion failure while trying to externalize strings
The normal dialog does not come up at all when source->external strings is clicked. I will attach the uncooperative file (If you need the whole plugin, it is in the WTP project: org.eclipse.jst.server.ui). org.eclipse.jface.text.Assert$AssertionFailedException: Assertion failed: at org.eclipse.jface.text.Assert.isTrue(...
verified fixed
764a624
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T08:52:11Z
2005-06-03T17:33:20Z
org.eclipse.jdt.ui/core
98,354
Bug 98354 [nls tooling] Assertion failure while trying to externalize strings
The normal dialog does not come up at all when source->external strings is clicked. I will attach the uncooperative file (If you need the whole plugin, it is in the WTP project: org.eclipse.jst.server.ui). org.eclipse.jface.text.Assert$AssertionFailedException: Assertion failed: at org.eclipse.jface.text.Assert.isTrue(...
verified fixed
764a624
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T08:52:11Z
2005-06-03T17:33:20Z
refactoring/org/eclipse/jdt/internal/corext/refactoring/nls/NLSHint.java
97,936
Bug 97936 [build path] build path page overwrites changes in classpath
I have plugin which contribute page into the Project Properties Dialog (java project). In this page IJavaProject.setRawClasspath() called for current project. I do the following steps: 1. Open Project Properties Dialog 2. Select Java Build Path page. Do nothing with it. 3. Select "MyPage". 4. Do something which calls s...
verified fixed
887cd1a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T09:22:05Z
2005-06-01T18:20:00Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/BuildPathsPropertyPage.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
98,710
Bug 98710 Filter native library and access restriction attributes on jars in JRE containers
null
verified fixed
9b88c4a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T09:47:49Z
2005-06-07T16:00:00Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/CPListElement.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
97,246
Bug 97246 Convert to enhanced for misses cases with cast
RC1 The following case is missed: public void testNix() { List list= new ArrayList(); for (Iterator iterator = list.iterator(); iterator.hasNext();) { Object element = iterator.next(); } }
verified fixed
443e402
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T11:16:49Z
2005-05-30T13:33:20Z
org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/ConvertIterableLoopQuickFixTest.java
/******************************************************************************* * Copyright (c) 2005 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 a...
97,246
Bug 97246 Convert to enhanced for misses cases with cast
RC1 The following case is missed: public void testNix() { List list= new ArrayList(); for (Iterator iterator = list.iterator(); iterator.hasNext();) { Object element = iterator.next(); } }
verified fixed
443e402
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T11:16:49Z
2005-05-30T13:33:20Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ConvertIterableLoopProposal.java
/******************************************************************************* * Copyright (c) 2005 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 a...
96,924
Bug 96924 [content assist] don't show templates in restricted situations
null
verified fixed
23b44f0
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T12:29:42Z
2005-05-27T07:46:40Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/template/contentassist/TemplateProposal.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
95,181
Bug 95181 [content assist] Regression: Javadoc popup not displayed for constructors
Given: Tracker tracker = new Tracker(<<CONTENT ASSIST>>); The 4 proposals are tracker's two constructors, and 2 anonymous inner class entries. The javadoc for Tracker's constructors only get displayed if I select the anonymous suggestions. I tried other classes and got the same behavior.
verified fixed
038502c
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T12:35:50Z
2005-05-13T18:46:40Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/MethodProposalInfo.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
95,181
Bug 95181 [content assist] Regression: Javadoc popup not displayed for constructors
Given: Tracker tracker = new Tracker(<<CONTENT ASSIST>>); The 4 proposals are tracker's two constructors, and 2 anonymous inner class entries. The javadoc for Tracker's constructors only get displayed if I select the anonymous suggestions. I tried other classes and got the same behavior.
verified fixed
038502c
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T12:35:50Z
2005-05-13T18:46:40Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/java/CompletionProposalLabelProvider.java
/******************************************************************************* * Copyright (c) 2005 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 a...
98,893
Bug 98893 Override/implement methods generating exception
N20050606-0010 Went to an anonymous inner class. Hit alt-shift-s for source menu, and selected override/implement methods. Got an error dialog with the following error: "Show Source Quick Menu" did not complete normally. Please see the log for more information. Found this in my log: java.lang.ClassCastException at org....
verified fixed
19b2980
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T12:58:50Z
2005-06-08T08:40:00Z
org.eclipse.jdt.ui/core
98,893
Bug 98893 Override/implement methods generating exception
N20050606-0010 Went to an anonymous inner class. Hit alt-shift-s for source menu, and selected override/implement methods. Got an error dialog with the following error: "Show Source Quick Menu" did not complete normally. Please see the log for more information. Found this in my log: java.lang.ClassCastException at org....
verified fixed
19b2980
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T12:58:50Z
2005-06-08T08:40:00Z
extension/org/eclipse/jdt/internal/corext/codemanipulation/AddUnimplementedMethodsOperation.java
98,893
Bug 98893 Override/implement methods generating exception
N20050606-0010 Went to an anonymous inner class. Hit alt-shift-s for source menu, and selected override/implement methods. Got an error dialog with the following error: "Show Source Quick Menu" did not complete normally. Please see the log for more information. Found this in my log: java.lang.ClassCastException at org....
verified fixed
19b2980
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T12:58:50Z
2005-06-08T08:40:00Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/OverrideMethodDialog.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
94,698
Bug 94698 [5.0] Mark inherited members doesn't work for parameterized types
I20050509-2010 public class MyList extends ArrayList<String> implements List<String> { @Override public boolean add(String o) { // TODO Auto-generated method stub return super.add(o); } } Neiter selecting ArrayList nor List marks the method add(String o). However this method overrides the method from ArrayList and impl...
verified fixed
062cdfd
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T13:08:50Z
2005-05-11T14:00:00Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/ImplementOccurrencesFinder.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
95,115
Bug 95115 Moving generic static method fails to update references
Against I20050513-0010. Project will be attached. Given code: public class Exposer<T> { static <T> Exposer<T> createExposer(Class<T> clazz) { return new Exposer<T>(); } void foo() { createExposer(String.class); createExposer(int.class); } } class Foo { } Move method createExposer to Foo. The references to the method ar...
verified fixed
15a36ac
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T13:33:46Z
2005-05-13T13:13:20Z
org.eclipse.jdt.ui/core
95,115
Bug 95115 Moving generic static method fails to update references
Against I20050513-0010. Project will be attached. Given code: public class Exposer<T> { static <T> Exposer<T> createExposer(Class<T> clazz) { return new Exposer<T>(); } void foo() { createExposer(String.class); createExposer(int.class); } } class Foo { } Move method createExposer to Foo. The references to the method ar...
verified fixed
15a36ac
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T13:33:46Z
2005-05-13T13:13:20Z
refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ReferenceAnalyzer.java
98,733
Bug 98733 [templates] probe formatter when applying templates
null
verified fixed
8711dda
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T13:43:00Z
2005-06-07T16:00:00Z
org.eclipse.jdt.ui/core
98,733
Bug 98733 [templates] probe formatter when applying templates
null
verified fixed
8711dda
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T13:43:00Z
2005-06-07T16:00:00Z
extension/org/eclipse/jdt/internal/corext/template/java/JavaFormatter.java
98,918
Bug 98918 AssertionFailedException with zero-length classpath variable entry
Against N20050608-0010.from20050608_1210 1) Create a java project "b" 2) Context menu on b > Properties > Java Build Path > Libraries 3) Add Variable. Select JUNIT_HOME, click Extend..., select junit.jar 4) Click Edit... 5) Delete all text in the text box, click OK. Now the error below is logged, and no further changes...
verified fixed
4d2ae30
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T16:12:09Z
2005-06-08T11:26:40Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/EditVariableEntryDialog.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
97,306
Bug 97306 [5.0] Unexspected error in Infer Type Arguments refactoring with varargs [refactoring]
3.1 RC1 Steps to reproduce: - Invoke Infer Type Argument on attached project -> Instead of showing the cu in the context viewer, the stacktrace of the error could be displayed Attaching project and log
verified fixed
3f4f15b
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T16:15:24Z
2005-05-30T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuVarargs01/in/A.java
97,306
Bug 97306 [5.0] Unexspected error in Infer Type Arguments refactoring with varargs [refactoring]
3.1 RC1 Steps to reproduce: - Invoke Infer Type Argument on attached project -> Instead of showing the cu in the context viewer, the stacktrace of the error could be displayed Attaching project and log
verified fixed
3f4f15b
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T16:15:24Z
2005-05-30T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuVarargs01/out/A.java
97,306
Bug 97306 [5.0] Unexspected error in Infer Type Arguments refactoring with varargs [refactoring]
3.1 RC1 Steps to reproduce: - Invoke Infer Type Argument on attached project -> Instead of showing the cu in the context viewer, the stacktrace of the error could be displayed Attaching project and log
verified fixed
3f4f15b
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T16:15:24Z
2005-05-30T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/TypeEnvironment/TestProject/generic/TestStandardAssignments.java
package generic; import java.io.Serializable; import java.net.Socket; import java.util.ArrayList; import java.util.Collection; import java.util.List; import java.util.Vector; public class TestStandardAssignments<T, U extends Number, V extends Serializable> { Object NullType= null; int i; char c; boolean b; sho...
97,306
Bug 97306 [5.0] Unexspected error in Infer Type Arguments refactoring with varargs [refactoring]
3.1 RC1 Steps to reproduce: - Invoke Infer Type Argument on attached project -> Instead of showing the cu in the context viewer, the stacktrace of the error could be displayed Attaching project and log
verified fixed
3f4f15b
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T16:15:24Z
2005-05-30T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/TypeEnvironment/TestProject/generic/TestTypeVariableAssignments.java
package generic; import java.util.Collection; public class TestTypeVariableAssignments<A, B extends Number & Collection<String>, C extends A> { Object o= null; A a; B b; C c; Number number; Integer integer; Collection<String> coll_string; }
97,306
Bug 97306 [5.0] Unexspected error in Infer Type Arguments refactoring with varargs [refactoring]
3.1 RC1 Steps to reproduce: - Invoke Infer Type Argument on attached project -> Instead of showing the cu in the context viewer, the stacktrace of the error could be displayed Attaching project and log
verified fixed
3f4f15b
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T16:15:24Z
2005-05-30T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/test
97,306
Bug 97306 [5.0] Unexspected error in Infer Type Arguments refactoring with varargs [refactoring]
3.1 RC1 Steps to reproduce: - Invoke Infer Type Argument on attached project -> Instead of showing the cu in the context viewer, the stacktrace of the error could be displayed Attaching project and log
verified fixed
3f4f15b
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T16:15:24Z
2005-05-30T16:20:00Z
cases/org/eclipse/jdt/ui/tests/refactoring/InferTypeArgumentsTests.java
97,306
Bug 97306 [5.0] Unexspected error in Infer Type Arguments refactoring with varargs [refactoring]
3.1 RC1 Steps to reproduce: - Invoke Infer Type Argument on attached project -> Instead of showing the cu in the context viewer, the stacktrace of the error could be displayed Attaching project and log
verified fixed
3f4f15b
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T16:15:24Z
2005-05-30T16:20:00Z
org.eclipse.jdt.ui/core
97,306
Bug 97306 [5.0] Unexspected error in Infer Type Arguments refactoring with varargs [refactoring]
3.1 RC1 Steps to reproduce: - Invoke Infer Type Argument on attached project -> Instead of showing the cu in the context viewer, the stacktrace of the error could be displayed Attaching project and log
verified fixed
3f4f15b
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T16:15:24Z
2005-05-30T16:20:00Z
refactoring/org/eclipse/jdt/internal/corext/refactoring/generics/InferTypeArgumentsConstraintCreator.java
97,306
Bug 97306 [5.0] Unexspected error in Infer Type Arguments refactoring with varargs [refactoring]
3.1 RC1 Steps to reproduce: - Invoke Infer Type Argument on attached project -> Instead of showing the cu in the context viewer, the stacktrace of the error could be displayed Attaching project and log
verified fixed
3f4f15b
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T16:15:24Z
2005-05-30T16:20:00Z
org.eclipse.jdt.ui/core
97,306
Bug 97306 [5.0] Unexspected error in Infer Type Arguments refactoring with varargs [refactoring]
3.1 RC1 Steps to reproduce: - Invoke Infer Type Argument on attached project -> Instead of showing the cu in the context viewer, the stacktrace of the error could be displayed Attaching project and log
verified fixed
3f4f15b
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T16:15:24Z
2005-05-30T16:20:00Z
refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/types/ArrayType.java
98,994
Bug 98994 [templates][5.0] local collections are not resolved properly
N20050608 - Java5 JRE - resolve the "for - iterate over collection" template in the context below -> no collection is resolved class X { void m(LinkedList list) { for| } } CompilationUnitCompletion.LocalVariable.isCollection checks whether a type implements java.util.Collection. For efficieny reasons, we used to check ...
verified fixed
3d31fc3
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T17:31:43Z
2005-06-08T17:00:00Z
org.eclipse.jdt.ui/core
98,994
Bug 98994 [templates][5.0] local collections are not resolved properly
N20050608 - Java5 JRE - resolve the "for - iterate over collection" template in the context below -> no collection is resolved class X { void m(LinkedList list) { for| } } CompilationUnitCompletion.LocalVariable.isCollection checks whether a type implements java.util.Collection. For efficieny reasons, we used to check ...
verified fixed
3d31fc3
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T17:31:43Z
2005-06-08T17:00:00Z
extension/org/eclipse/jdt/internal/corext/template/java/CompilationUnitCompletion.java
86,447
Bug 86447 Infer Type Arguments should respect existing type arguments
public class Z { void foo() { List l= new ArrayList(); bar(l); l.add(new Object()); } void bar(List<String> l) { } } In the following example generify converts the list to List<Object> which produces a compile error. We should leave the code unchanged in this example.
verified fixed
d3e4f57
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T18:24:16Z
2005-02-24T10:13:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuExistingParameterized01/in/A.java
86,447
Bug 86447 Infer Type Arguments should respect existing type arguments
public class Z { void foo() { List l= new ArrayList(); bar(l); l.add(new Object()); } void bar(List<String> l) { } } In the following example generify converts the list to List<Object> which produces a compile error. We should leave the code unchanged in this example.
verified fixed
d3e4f57
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T18:24:16Z
2005-02-24T10:13:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuExistingParameterized01/out/A.java
86,447
Bug 86447 Infer Type Arguments should respect existing type arguments
public class Z { void foo() { List l= new ArrayList(); bar(l); l.add(new Object()); } void bar(List<String> l) { } } In the following example generify converts the list to List<Object> which produces a compile error. We should leave the code unchanged in this example.
verified fixed
d3e4f57
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T18:24:16Z
2005-02-24T10:13:20Z
org.eclipse.jdt.ui.tests.refactoring/test
86,447
Bug 86447 Infer Type Arguments should respect existing type arguments
public class Z { void foo() { List l= new ArrayList(); bar(l); l.add(new Object()); } void bar(List<String> l) { } } In the following example generify converts the list to List<Object> which produces a compile error. We should leave the code unchanged in this example.
verified fixed
d3e4f57
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T18:24:16Z
2005-02-24T10:13:20Z
cases/org/eclipse/jdt/ui/tests/refactoring/InferTypeArgumentsTests.java
86,447
Bug 86447 Infer Type Arguments should respect existing type arguments
public class Z { void foo() { List l= new ArrayList(); bar(l); l.add(new Object()); } void bar(List<String> l) { } } In the following example generify converts the list to List<Object> which produces a compile error. We should leave the code unchanged in this example.
verified fixed
d3e4f57
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T18:24:16Z
2005-02-24T10:13:20Z
org.eclipse.jdt.ui/core
86,447
Bug 86447 Infer Type Arguments should respect existing type arguments
public class Z { void foo() { List l= new ArrayList(); bar(l); l.add(new Object()); } void bar(List<String> l) { } } In the following example generify converts the list to List<Object> which produces a compile error. We should leave the code unchanged in this example.
verified fixed
d3e4f57
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T18:24:16Z
2005-02-24T10:13:20Z
refactoring/org/eclipse/jdt/internal/corext/refactoring/generics/InferTypeArgumentsConstraintCreator.java
86,447
Bug 86447 Infer Type Arguments should respect existing type arguments
public class Z { void foo() { List l= new ArrayList(); bar(l); l.add(new Object()); } void bar(List<String> l) { } } In the following example generify converts the list to List<Object> which produces a compile error. We should leave the code unchanged in this example.
verified fixed
d3e4f57
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T18:24:16Z
2005-02-24T10:13:20Z
org.eclipse.jdt.ui/core
86,447
Bug 86447 Infer Type Arguments should respect existing type arguments
public class Z { void foo() { List l= new ArrayList(); bar(l); l.add(new Object()); } void bar(List<String> l) { } } In the following example generify converts the list to List<Object> which produces a compile error. We should leave the code unchanged in this example.
verified fixed
d3e4f57
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-08T18:24:16Z
2005-02-24T10:13:20Z
refactoring/org/eclipse/jdt/internal/corext/refactoring/generics/InferTypeArgumentsTCModel.java
97,207
Bug 97207 [refactoring] Infer Generic Type Arguments NullPE with missing bindings
Version: 3.1.0 Build id: I20050527-1300 (RC1) Steps to reproduce: 1.) Have a class like this: public class Main { public void loadSashWeights() { Hashtable<String, I[]> hash = new Hashtable<String, I[]>(); hash.put("Foo", new int[] { 3 }); } } 2.) Run Refactor > Infer Generic Type Arguments Actual Results: Find the att...
verified fixed
b883bd9
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T08:05:00Z
2005-05-30T10:46:40Z
org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuMethodAndTypeGeneric02/in/A.java
package p; class A { void call(Ex ex) { ex.method("Eclipse1", new Integer(1)); Top top= ex; top.method("Eclipse2", new Integer(2)); } } class Top<TC> { <TM> void method(TC cTop, TM mTop) {} } class Ex<C> extends Top<C> { <M> void method(C cEx, M mEx) {} }
97,207
Bug 97207 [refactoring] Infer Generic Type Arguments NullPE with missing bindings
Version: 3.1.0 Build id: I20050527-1300 (RC1) Steps to reproduce: 1.) Have a class like this: public class Main { public void loadSashWeights() { Hashtable<String, I[]> hash = new Hashtable<String, I[]>(); hash.put("Foo", new int[] { 3 }); } } 2.) Run Refactor > Infer Generic Type Arguments Actual Results: Find the att...
verified fixed
b883bd9
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T08:05:00Z
2005-05-30T10:46:40Z
org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuMethodAndTypeGeneric02/out/A.java
package p; class A { void call(Ex<String> ex) { ex.method("Eclipse1", new Integer(1)); Top<String> top= ex; top.method("Eclipse2", new Integer(2)); } } class Top<TC> { <TM> void method(TC cTop, TM mTop) {} } class Ex<C> extends Top<C> { <M> void method(C cEx, M mEx) {} }
97,207
Bug 97207 [refactoring] Infer Generic Type Arguments NullPE with missing bindings
Version: 3.1.0 Build id: I20050527-1300 (RC1) Steps to reproduce: 1.) Have a class like this: public class Main { public void loadSashWeights() { Hashtable<String, I[]> hash = new Hashtable<String, I[]>(); hash.put("Foo", new int[] { 3 }); } } 2.) Run Refactor > Infer Generic Type Arguments Actual Results: Find the att...
verified fixed
b883bd9
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T08:05:00Z
2005-05-30T10:46:40Z
org.eclipse.jdt.ui/core
97,207
Bug 97207 [refactoring] Infer Generic Type Arguments NullPE with missing bindings
Version: 3.1.0 Build id: I20050527-1300 (RC1) Steps to reproduce: 1.) Have a class like this: public class Main { public void loadSashWeights() { Hashtable<String, I[]> hash = new Hashtable<String, I[]>(); hash.put("Foo", new int[] { 3 }); } } 2.) Run Refactor > Infer Generic Type Arguments Actual Results: Find the att...
verified fixed
b883bd9
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T08:05:00Z
2005-05-30T10:46:40Z
refactoring/org/eclipse/jdt/internal/corext/refactoring/RefactoringCoreMessages.java
97,207
Bug 97207 [refactoring] Infer Generic Type Arguments NullPE with missing bindings
Version: 3.1.0 Build id: I20050527-1300 (RC1) Steps to reproduce: 1.) Have a class like this: public class Main { public void loadSashWeights() { Hashtable<String, I[]> hash = new Hashtable<String, I[]>(); hash.put("Foo", new int[] { 3 }); } } 2.) Run Refactor > Infer Generic Type Arguments Actual Results: Find the att...
verified fixed
b883bd9
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T08:05:00Z
2005-05-30T10:46:40Z
org.eclipse.jdt.ui/core
97,207
Bug 97207 [refactoring] Infer Generic Type Arguments NullPE with missing bindings
Version: 3.1.0 Build id: I20050527-1300 (RC1) Steps to reproduce: 1.) Have a class like this: public class Main { public void loadSashWeights() { Hashtable<String, I[]> hash = new Hashtable<String, I[]>(); hash.put("Foo", new int[] { 3 }); } } 2.) Run Refactor > Infer Generic Type Arguments Actual Results: Find the att...
verified fixed
b883bd9
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T08:05:00Z
2005-05-30T10:46:40Z
refactoring/org/eclipse/jdt/internal/corext/refactoring/generics/InferTypeArgumentsRefactoring.java
99,032
Bug 99032 Assertation failure in LazyJavaCompletionProposal.setReplacementLength
N20050607-0010 org.eclipse.jface.text.Assert$AssertionFailedException: Assertion failed: at org.eclipse.jface.text.Assert.isTrue(Assert.java:189) at org.eclipse.jface.text.Assert.isTrue(Assert.java:174) at org.eclipse.jdt.internal.ui.text.java.LazyJavaCompletionProposal.setReplacementLength(LazyJavaCompletionProposal.j...
verified fixed
17f36d2
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T08:26:45Z
2005-06-08T19:46:40Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/LazyJavaCompletionProposal.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
98,344
Bug 98344 smart completion for anonymous inner type of abstract inner class missing methods
I'm using Eclipse 3.1 RC1. First I input the following class into Eclipse: public class Test { abstract class Foo { abstract void doSomething(); } void bar() { Foo f = new Foo(); } } The class does not compile because Foo is abstract. If I put the cursor between the parens of the Foo() constructor call and hit CTRL+SPA...
verified fixed
e2691db
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T08:53:34Z
2005-06-03T17:33:20Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/AnonymousTypeCompletionProposal.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...
98,990
Bug 98990 Open Type dialog: removed type is not removed from history
N20050608-0010 - Have this CU: package xy; public class Try { class Inner {} } class Secondary { } - Open all 3 types once via Open Type, so that they are in the history. - Comment out one of the type declarations, save. => The Open Type history still shows the removed type, and when it is selected, a dialog is shown: ...
verified fixed
6a261f1
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T09:05:57Z
2005-06-08T17:00:00Z
org.eclipse.jdt.ui/core
98,990
Bug 98990 Open Type dialog: removed type is not removed from history
N20050608-0010 - Have this CU: package xy; public class Try { class Inner {} } class Secondary { } - Open all 3 types once via Open Type, so that they are in the history. - Comment out one of the type declarations, save. => The Open Type history still shows the removed type, and when it is selected, a dialog is shown: ...
verified fixed
6a261f1
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T09:05:57Z
2005-06-08T17:00:00Z
extension/org/eclipse/jdt/internal/corext/util/IFileTypeInfo.java
98,990
Bug 98990 Open Type dialog: removed type is not removed from history
N20050608-0010 - Have this CU: package xy; public class Try { class Inner {} } class Secondary { } - Open all 3 types once via Open Type, so that they are in the history. - Comment out one of the type declarations, save. => The Open Type history still shows the removed type, and when it is selected, a dialog is shown: ...
verified fixed
6a261f1
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T09:05:57Z
2005-06-08T17:00:00Z
org.eclipse.jdt.ui/core
98,990
Bug 98990 Open Type dialog: removed type is not removed from history
N20050608-0010 - Have this CU: package xy; public class Try { class Inner {} } class Secondary { } - Open all 3 types once via Open Type, so that they are in the history. - Comment out one of the type declarations, save. => The Open Type history still shows the removed type, and when it is selected, a dialog is shown: ...
verified fixed
6a261f1
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T09:05:57Z
2005-06-08T17:00:00Z
extension/org/eclipse/jdt/internal/corext/util/JarFileEntryTypeInfo.java
98,990
Bug 98990 Open Type dialog: removed type is not removed from history
N20050608-0010 - Have this CU: package xy; public class Try { class Inner {} } class Secondary { } - Open all 3 types once via Open Type, so that they are in the history. - Comment out one of the type declarations, save. => The Open Type history still shows the removed type, and when it is selected, a dialog is shown: ...
verified fixed
6a261f1
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T09:05:57Z
2005-06-08T17:00:00Z
org.eclipse.jdt.ui/core
98,990
Bug 98990 Open Type dialog: removed type is not removed from history
N20050608-0010 - Have this CU: package xy; public class Try { class Inner {} } class Secondary { } - Open all 3 types once via Open Type, so that they are in the history. - Comment out one of the type declarations, save. => The Open Type history still shows the removed type, and when it is selected, a dialog is shown: ...
verified fixed
6a261f1
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T09:05:57Z
2005-06-08T17:00:00Z
extension/org/eclipse/jdt/internal/corext/util/TypeInfo.java
98,990
Bug 98990 Open Type dialog: removed type is not removed from history
N20050608-0010 - Have this CU: package xy; public class Try { class Inner {} } class Secondary { } - Open all 3 types once via Open Type, so that they are in the history. - Comment out one of the type declarations, save. => The Open Type history still shows the removed type, and when it is selected, a dialog is shown: ...
verified fixed
6a261f1
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T09:05:57Z
2005-06-08T17:00:00Z
org.eclipse.jdt.ui/core
98,990
Bug 98990 Open Type dialog: removed type is not removed from history
N20050608-0010 - Have this CU: package xy; public class Try { class Inner {} } class Secondary { } - Open all 3 types once via Open Type, so that they are in the history. - Comment out one of the type declarations, save. => The Open Type history still shows the removed type, and when it is selected, a dialog is shown: ...
verified fixed
6a261f1
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T09:05:57Z
2005-06-08T17:00:00Z
extension/org/eclipse/jdt/internal/corext/util/TypeInfoHistory.java
98,990
Bug 98990 Open Type dialog: removed type is not removed from history
N20050608-0010 - Have this CU: package xy; public class Try { class Inner {} } class Secondary { } - Open all 3 types once via Open Type, so that they are in the history. - Comment out one of the type declarations, save. => The Open Type history still shows the removed type, and when it is selected, a dialog is shown: ...
verified fixed
6a261f1
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T09:05:57Z
2005-06-08T17:00:00Z
org.eclipse.jdt.ui/core
98,990
Bug 98990 Open Type dialog: removed type is not removed from history
N20050608-0010 - Have this CU: package xy; public class Try { class Inner {} } class Secondary { } - Open all 3 types once via Open Type, so that they are in the history. - Comment out one of the type declarations, save. => The Open Type history still shows the removed type, and when it is selected, a dialog is shown: ...
verified fixed
6a261f1
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T09:05:57Z
2005-06-08T17:00:00Z
extension/org/eclipse/jdt/internal/corext/util/UnresolvableTypeInfo.java
86,699
Bug 86699 infer type args: Problems with supertype calculation of raw types and type variables
3.1M5a public class TypeParams9<T1 extends Number & Comparable> { Comparable f(T1 t1){ Vector v1= new Vector(); v1.add(t1); v1.add(new Integer(1)); v1.add(""); return (Comparable)v1.get(0); } } try 'infer type args' you get .... Caused by: java.lang.ArrayIndexOutOfBoundsException: 0 at org.eclipse.jdt.internal.corext.r...
verified fixed
b1a4582
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T11:22:09Z
2005-02-25T19:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCUTypeParams9/in/A.java
86,699
Bug 86699 infer type args: Problems with supertype calculation of raw types and type variables
3.1M5a public class TypeParams9<T1 extends Number & Comparable> { Comparable f(T1 t1){ Vector v1= new Vector(); v1.add(t1); v1.add(new Integer(1)); v1.add(""); return (Comparable)v1.get(0); } } try 'infer type args' you get .... Caused by: java.lang.ArrayIndexOutOfBoundsException: 0 at org.eclipse.jdt.internal.corext.r...
verified fixed
b1a4582
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T11:22:09Z
2005-02-25T19:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCUTypeParams9/out/A.java
86,699
Bug 86699 infer type args: Problems with supertype calculation of raw types and type variables
3.1M5a public class TypeParams9<T1 extends Number & Comparable> { Comparable f(T1 t1){ Vector v1= new Vector(); v1.add(t1); v1.add(new Integer(1)); v1.add(""); return (Comparable)v1.get(0); } } try 'infer type args' you get .... Caused by: java.lang.ArrayIndexOutOfBoundsException: 0 at org.eclipse.jdt.internal.corext.r...
verified fixed
b1a4582
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T11:22:09Z
2005-02-25T19:33:20Z
org.eclipse.jdt.ui.tests.refactoring/test
86,699
Bug 86699 infer type args: Problems with supertype calculation of raw types and type variables
3.1M5a public class TypeParams9<T1 extends Number & Comparable> { Comparable f(T1 t1){ Vector v1= new Vector(); v1.add(t1); v1.add(new Integer(1)); v1.add(""); return (Comparable)v1.get(0); } } try 'infer type args' you get .... Caused by: java.lang.ArrayIndexOutOfBoundsException: 0 at org.eclipse.jdt.internal.corext.r...
verified fixed
b1a4582
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T11:22:09Z
2005-02-25T19:33:20Z
cases/org/eclipse/jdt/ui/tests/refactoring/InferTypeArgumentsTests.java
86,699
Bug 86699 infer type args: Problems with supertype calculation of raw types and type variables
3.1M5a public class TypeParams9<T1 extends Number & Comparable> { Comparable f(T1 t1){ Vector v1= new Vector(); v1.add(t1); v1.add(new Integer(1)); v1.add(""); return (Comparable)v1.get(0); } } try 'infer type args' you get .... Caused by: java.lang.ArrayIndexOutOfBoundsException: 0 at org.eclipse.jdt.internal.corext.r...
verified fixed
b1a4582
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T11:22:09Z
2005-02-25T19:33:20Z
org.eclipse.jdt.ui/core
86,699
Bug 86699 infer type args: Problems with supertype calculation of raw types and type variables
3.1M5a public class TypeParams9<T1 extends Number & Comparable> { Comparable f(T1 t1){ Vector v1= new Vector(); v1.add(t1); v1.add(new Integer(1)); v1.add(""); return (Comparable)v1.get(0); } } try 'infer type args' you get .... Caused by: java.lang.ArrayIndexOutOfBoundsException: 0 at org.eclipse.jdt.internal.corext.r...
verified fixed
b1a4582
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T11:22:09Z
2005-02-25T19:33:20Z
refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/types/AbstractTypeVariable.java
86,699
Bug 86699 infer type args: Problems with supertype calculation of raw types and type variables
3.1M5a public class TypeParams9<T1 extends Number & Comparable> { Comparable f(T1 t1){ Vector v1= new Vector(); v1.add(t1); v1.add(new Integer(1)); v1.add(""); return (Comparable)v1.get(0); } } try 'infer type args' you get .... Caused by: java.lang.ArrayIndexOutOfBoundsException: 0 at org.eclipse.jdt.internal.corext.r...
verified fixed
b1a4582
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T11:22:09Z
2005-02-25T19:33:20Z
org.eclipse.jdt.ui/core
86,699
Bug 86699 infer type args: Problems with supertype calculation of raw types and type variables
3.1M5a public class TypeParams9<T1 extends Number & Comparable> { Comparable f(T1 t1){ Vector v1= new Vector(); v1.add(t1); v1.add(new Integer(1)); v1.add(""); return (Comparable)v1.get(0); } } try 'infer type args' you get .... Caused by: java.lang.ArrayIndexOutOfBoundsException: 0 at org.eclipse.jdt.internal.corext.r...
verified fixed
b1a4582
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T11:22:09Z
2005-02-25T19:33:20Z
refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints2/TTypes.java
86,699
Bug 86699 infer type args: Problems with supertype calculation of raw types and type variables
3.1M5a public class TypeParams9<T1 extends Number & Comparable> { Comparable f(T1 t1){ Vector v1= new Vector(); v1.add(t1); v1.add(new Integer(1)); v1.add(""); return (Comparable)v1.get(0); } } try 'infer type args' you get .... Caused by: java.lang.ArrayIndexOutOfBoundsException: 0 at org.eclipse.jdt.internal.corext.r...
verified fixed
b1a4582
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T11:22:09Z
2005-02-25T19:33:20Z
org.eclipse.jdt.ui/ui
86,699
Bug 86699 infer type args: Problems with supertype calculation of raw types and type variables
3.1M5a public class TypeParams9<T1 extends Number & Comparable> { Comparable f(T1 t1){ Vector v1= new Vector(); v1.add(t1); v1.add(new Integer(1)); v1.add(""); return (Comparable)v1.get(0); } } try 'infer type args' you get .... Caused by: java.lang.ArrayIndexOutOfBoundsException: 0 at org.eclipse.jdt.internal.corext.r...
verified fixed
b1a4582
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T11:22:09Z
2005-02-25T19:33:20Z
refactoring/org/eclipse/jdt/internal/ui/refactoring/InferTypeArgumentsWizard.java
99,072
Bug 99072 [preferences] Explain Ctrl modifier for code assistant
N20050608-0010 This was a polish item that we got to add. Easy fix. Approving for 3.1 RC2.
verified fixed
ce2f71e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T11:26:54Z
2005-06-08T22:33:20Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CodeAssistConfigurationBlock.java
/******************************************************************************* * Copyright (c) 2000, 2005 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, an...