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
updated_files
stringlengths
29
34.1k
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]
107,470
Bug 107470 [search] Alt+Shift+R does not work in Search View.
In the Java Browsing Perspective. I perform a Search for methods with a certain pattern. The methods show up in the Search View (Which is reall a "Found" view, but, nevermind '-) I click on a method in the Search view, and type Alt+Shift+R, nothing happens. I expect the Rename method dialog to open at that point. Non-o...
verified fixed
21d7500
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/NewSearchViewActionGroup.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-22T09:33:06Z
2005-08-19T19:33:20Z
107,206
Bug 107206 [add import] Add import should special case class literal
null
verified fixed
28de470
["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/AddImportTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/AddImportsOperation.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-19T16:02:35Z
2005-08-17T14:46:40Z
107,036
Bug 107036 [quick fix] NPE in TypeMismatchSubProcessor with missing variable binding
I20050811-1530 public class Try { { Integer in= 1; Integer in= getClass(); //quick fix "in" } } Exception while processing quick fixes or quick assists: java.lang.NullPointerException at org.eclipse.jdt.core.dom.TypeBinding.isCastCompatible(TypeBinding.java:921) at org.eclipse.jdt.internal.ui.text.correction.TypeMismat...
verified fixed
720bd9a
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/TypeMismatchSubProcessor.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-19T10:30:24Z
2005-08-15T15:33:20Z
106,855
Bug 106855 [quick fix] Add quickfix for remove unnecessary nls tags
null
verified fixed
f5b7fdf
["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/LocalCorrectionsQuickFixTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/CorrectionMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.java", "org.eclipse.jdt.ui/ui/o...
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-19T10:16:51Z
2005-08-12T15:20:00Z
105,829
Bug 105829 [refactoring] infer type arguments: StackOverflowError
3.1 public class A { void foo() { Vector v1= new Vector(); Vector v2= new Vector(); v2.add(v1); v1.add(v2); } } Caused by: java.lang.StackOverflowError at org.eclipse.jdt.internal.corext.refactoring.generics.ParametricStructureComputer.updateStructureOfIthParamFrom(ParametricStructureComputer.java:297) at org.eclipse.j...
verified fixed
f2d4daf
["org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuNestedVectors1/in/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuNestedVectors1/out/A.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/InferTypeArgumentsTests.java"...
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-18T09:20:24Z
2005-08-02T16:26:40Z
106,127
Bug 106127 [ccp] [refactoring] AssertionFailedException copying compilation unit
When copying a compilation unit i am getting an assertion failed exception. The error went away when i restarted eclipse. Spooky. Here is what i was doing at the time to get the error: 1. Copy compilation unit 2. Paste into the same package 3. Change the name when the rename dialog comes up org.eclipse.jdt.internal.cor...
verified fixed
6038e48
["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/CreateCopyOfCompilationUnitChange.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-18T08:59:54Z
2005-08-05T02:46:40Z
107,128
Bug 107128 [typing] Move lines destroys indentation of outcommented code
I20050811-1530 Move lines destroys the indentation of code that has been commented out. IMO, Move lines should never try to be smart about the contents of a commented section. It should just add/remove whitespace in front of the // (same behavior as when moving other statements). public class Klass { int bar; // void f...
verified fixed
cdd502b
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/IndentAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/IndentUtil.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-18T08:12:32Z
2005-08-16T16:33:20Z
106,814
Bug 106814 [code manipulation] 'Add import' leaves '.' before type name
Build id: I20050627-1435 Does not happen always, seps are like this: 1. Type a class name within method body and hit Ctrl + Space to resolve class - this adds fully qualified class since auto imports are disabled. 2. Type '.' and access a field. Code looks like this: com.some.util.TypeDocs.SALES_MEMO 3. Hit Ctrl+Shif+M...
verified fixed
5b2cff4
["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/AddImportTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/AddImportsOperation.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-17T13:19:17Z
2005-08-12T07:00:00Z
104,202
Bug 104202 Better locations for assignement errors
It's just a detail, but the assignement errors are misplaced i think: import java.util.Vector; public class Test { private static Object getVector() { return new Vector(); } private static void test() { int i = getVector(); // the error is on "i" i = getVector(); // the error is on "getVector()" } } i believe the error...
verified fixed
e41238b
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/TypeMismatchSubProcessor.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-17T10:06:33Z
2005-07-18T09:46:40Z
107,097
Bug 107097 Error dialogs pop up when browsing for a JAR.
Build: 3.2M1 On a workspace containing two Java projects: one open and one closed: 1. Bring up the Java build path property page for the open project. 2. on the Libraries tab, press 'Add JARs...' You will get two error dialogs (per closed project) complaining about the project being not open.
verified fixed
30deac2
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/ArchiveFileFilter.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-16T14:56:38Z
2005-08-16T11:00:00Z
107,105
Bug 107105 [1.5][compiler] method override check does not detect differences in additional type bounds
I20050811-1530 + jdt.core v_606 Ecipse compiles these classes without error, although the methods in B and C don't override the one from A: import java.io.Serializable; class A { <S extends Number & Serializable & Runnable > void foo2(S s) { } } class B extends A { @Override // should error <S extends Number & Runnable...
verified fixed
3954626
["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/OverrideTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/dom/Bindings.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-16T12:21:22Z
2005-08-16T11:00:00Z
104,495
Bug 104495 [source manipulation] Constructor Using Fields should check all fields by default
3.1 for value type classes like class A{ private final int length; private final int width; private final String name; } it would be useful to have a quick fix to create a constructor to init all those fields. Ie. public A(int length, String name, int width) { this.length = length; this.name = name; this.width = width;...
resolved fixed
828e519
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/GenerateConstructorUsingFieldsContentProvider.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-15T08:54:04Z
2005-07-20T14:33:20Z
100,868
Bug 100868 [code assist] Code assist does not recommend methods in anonymous enum subclass
In RC3. Consider code: public enum Foo { A { tos<<>> }; } Where the cursor is at <<>>. Invoking code assist does not offer to override toString: it only offers class names.
verified fixed
292297f
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/OverrideCompletionProposal.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-15T08:41:24Z
2005-06-20T15:06:40Z
100,211
Bug 100211 [source actions] Strange behavior in "Generate Constructor using Fields"
I find the behavior of "Generate Constructor using Fields" is strange in some case. Suppose you have the following file: class ID { private int publicPart; private int localPart; } Then when you call "Generate Constructor using Fields", it generates: public ID(int part, int part2) { super(); // TODO Auto-generated cons...
verified fixed
8a41d10
["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/StubUtility2.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/GenerateConstructorUsingFieldsContentProvider.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-15T08:39:13Z
2005-06-15T15:40:00Z
106,607
Bug 106607 Paste class declaration to container should select created element
Paste class declaration to container should select created element (like e.g. new type wizard does).
verified fixed
50d73ad
["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/PasteAction.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-12T16:05:01Z
2005-08-10T10:33:20Z
104,030
Bug 104030 [refactoring] extract interface:NPE in SuperTypeConstraintsModel
3.1 extract the attached source open interace Node 'Extract Interface', select all methods java.lang.NullPointerException at org.eclipse.jdt.internal.corext.refactoring.structure.constraints.SuperTypeConstraintsModel.createTypeVariable(SuperTypeConstraintsModel.java:478) at org.eclipse.jdt.internal.corext.refactoring.s...
verified fixed
adc01b4
["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/constraints/SuperTypeConstraintsModel.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-08T12:39:32Z
2005-07-15T15:06:40Z
102,018
Bug 102018 [refactoring] Assertion fails in ExtractTempRefactoring.
Steps: 1) Hilite all of the System...getKey() expression. 2) Pick menu item Refactor>>Extract Local Variable. 3) Press Ok. The wizard then warns of a duplicate local variable. 4) Press Back. 5) Change suggested variable name from 'key' to 'foo'. 6) Press Ok. Assertion then fails. ------------------------ Bug.java -----...
verified fixed
83a9d00
["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractTempRefactoring.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-08T12:22:52Z
2005-06-28T14:46:40Z
66,891
Bug 66891 [preferences] Make "Fill Argument names..." the default
When you use the Microsoft Office Visual Basic Script editor (I do from time to time) one of the most practical things about it is the tooltip that appears underneath a method when you are adding the parameter values to it, in the following way: myMethodInvocation( ); -------------------------------------------------- ...
resolved fixed
7540a25
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/PreferenceConstants.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-05T08:02:11Z
2004-06-14T10:46:40Z
103,377
Bug 103377 [refactoring] PromoteTempToField doesn't properly set the type and the modifiers of the resulting variable declaration statement
If you change the getType() of VariableDeclarationStatement class to return double instead of int, three tests are failing in org.eclipse.jdt.ui.tests.refactoring.PromoteTempToFieldTests. They are test8, test13 and test15 (existing tests in 3.1). Three new tests are also failing. testMultiVariableDeclFragment01, testMu...
verified fixed
b4affab
["org.eclipse.jdt.ui.tests.refactoring/resources/PromoteTempToField/canPromote/A_testMultiVariableDeclFragment01_in.java", "org.eclipse.jdt.ui.tests.refactoring/resources/PromoteTempToField/canPromote/A_testMultiVariableDeclFragment01_out.java", "org.eclipse.jdt.ui.tests.refactoring/resources/PromoteTempToField/canProm...
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-04T17:28:01Z
2005-07-11T19:26:40Z
101,210
Bug 101210 Change method signature is disabled after disallowed call
In N20050622-0010. Code: import junit.framework.TestCase; public class NewTest extends TestCase { protected void setUp() throws Exception { } } 1) Select setUp, choose Refactor > Change Method Signature. 2) You are told that setUp overrides a method in TestCase. Say 'Yes'. 3) You are told "Cannot perform operation". Sa...
verified fixed
5546a36
["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/RefactoringExecutionStarter.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-04T14:20:53Z
2005-06-22T08:46:40Z
105,623
Bug 105623 [preferences] "restore defaults" has inconsistent behavior in project properties
On each of the JDT project property panes, "restore defaults" clears the "enable project specific settings" checkbox, disables the rest of the preference fields, and sets their displayed (greyed) contents to default. However, it evidently sets the displayed content to *factory* default. This is misleading, because if w...
verified fixed
32a3bf4
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/OptionsConfigurationBlock.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-08-02T09:40:23Z
2005-07-29T23:33:20Z
103,089
Bug 103089 [JUnit] Running JUnit tests constrained by package takes minutes to run on jumbos
null
verified fixed
d19d38d
["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/util/TestSearchEngine.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/util/TestSearchEngine.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/junit/tests/JUnitJUnitTests.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/junit/tests/Tes...
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-28T16:39:21Z
2005-07-07T21:00:00Z
105,034
Bug 105034 [WorkbenchParts] IWorkbenchPage#hideView(IViewPart) does not always dispose of the view any more
null
closed fixed
48281fe
["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/AutomatedSuite.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/browsing/MockPluginView.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/browsing/PackagesViewContentProviderTests.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/b...
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-27T12:55:44Z
2005-07-25T16:46:40Z
104,796
Bug 104796 [formatter] Indentation BREAKS if a inline class is built inside a switch-case statement
If I try to create a new class inline from an interface for examle (actionListener, Runnable, etc...) it normally works right and the indentation (highlighting everything and hitting CTRL-I) works just right like // Runnable with correct indentation new Runnable() { public void run() { // Do nothing } }; If instead I t...
resolved fixed
c87aa13
["org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/JavaHeuristicScannerTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaIndenter.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-26T14:31:27Z
2005-07-22T13:46:40Z
104,680
Bug 104680 [quick fix] QuickFix doesn't offer to surround exception with try/catch block.
-------------------- Bug.java ---------------------- class Bug { { Class.forName(null); } }
verified fixed
c083bd8
["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/LocalCorrectionsQuickFixTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-25T15:53:15Z
2005-07-21T15:33:20Z
104,065
Bug 104065 [quick fix] No Quick Fixes for marker with IMarker.LINE_NUMBER and no IMarker.CHAR_START and IMarker.CHAR_END
I'm creating (problem) markers for a java file and I only have a line number available when I create the marker. I add the IMarker.LINE_NUMBER attribute to the marker attributes, but do not specify a CHAR_START or CHAR_END. The marker shows up in the file, but there are no Quick Fixes available for it (using Ctrl+1 or ...
verified fixed
edcc88a
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/JavaCorrectionAssistant.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-25T15:23:05Z
2005-07-15T17:53:20Z
103,927
Bug 103927 [build path] External jar Dialog cannot set both Javadoc Location and Java Source Attachment in one iteration
Add an external jar to the project. From the context menu of the jar select properties. Select Javadoc location, browse to the desired location. Select Java Source Attachment. Browse to an external file. Press OK. From the context menu of the jar select properties again. Javadoc location is empty. (At this point it can...
verified fixed
fd60c4f
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javadocexport/JavadocLinkRef.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavadocConfigurationPropertyPage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/BuildPathSupport.java", "org.eclipse.jdt.ui/ui/org/eclipse/...
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-25T10:45:36Z
2005-07-14T22:26:40Z
63,389
Bug 63389 [projection] Do we need a folding region for the top-level type?
The Java editor is currently defining a folding region for the top-level type. I couldn't find a good use of this folding region and in particular it leads to some visual instability when hovering in the vertical rule in between methods. Therefore I suggest to not add this folding region.
resolved fixed
c01b315
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/folding/DefaultJavaFoldingStructureProvider.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-22T14:23:29Z
2004-05-21T11:46:40Z
102,724
Bug 102724 Potential NPE in TextInputWizardPage [refactoring]
3.1 Method TextInputWizardPage#textModified(String) has as last statement a method invocation "setPageComplete(validateTextField(text))". validateTextField(String) is spec'd to return null if no problem occurred during validation. setPageComplete(RefactoringStatus) however does not accept a null argument.
resolved fixed
8ef6c2d
["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/TextInputWizardPage.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-14T17:05:14Z
2005-07-05T10:40:00Z
100,551
Bug 100551 [quick fix] Wrong quick fix label: Change type to 'List<>'
null
verified fixed
28d9668
["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/QuickFixTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/UtilitiesTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ASTResolving.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correctio...
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-14T16:28:01Z
2005-06-17T09:20:00Z
103,505
Bug 103505 [browsing] Java Browser will not enable viewing Hierarchy for package in >1 folder
1. Consider workspace/proj/src/test/com/a and workspace/proj/src/test/com/a If com.a is viwed in the PackageExplorer the View Hierarchy options works fine. If one goes the the Java Browsing perspective and selects the proj then "a" shows up in the packages, but the View Hierarchy option is unavailable. 2. In general, w...
verified fixed
8b3ca68
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OpenTypeHierarchyAction.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-14T08:05:14Z
2005-07-12T17:40:00Z
102,193
Bug 102193 [Organize Imports] generic method problem
In Eclipse 3.1, if my code has the following line: Collections.<MyType>emptySet(); and I issue the Organize Imports command, MyType will be removed from the imports unless it is used elsewhere in that class.
verified fixed
e5b6281
["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/ImportOrganizeTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/ImportReferencesCollector.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-12T16:01:28Z
2005-06-29T18:33:20Z
101,261
Bug 101261 [type hierarchy] overriding a method from context menu > Source is not 5.0 aware
N20050622-0010 There's a hidden feature in the type hierarchy, that allows you to select a type XY and an inherited method, open the context menu and select Source > Override in 'XY'. This action has not been updated for 5.0 and creates a wrong method stub when generics are involved, e.g. here: public class Top<E> { pu...
resolved fixed
5eab599
["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/AddMethodStubOperation.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/CodeGenerationMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/IJavaHelpContextIds.java", "org.ec...
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-12T08:39:23Z
2005-06-22T14:20:00Z
101,296
Bug 101296 [templates] only one guess available for multi-variable templates
3.1-RC2 - have the CU below - invoke code assist at the caret (|) - note the foreach template proposed - select (don't apply) the template - wait until the preview appears - apply the template Expected: when tabbing to the Iterable in the for loop, there should be a proposal popup offering 'strings' and 'ints'. Actual:...
resolved fixed
3ead5f6
["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/template/java/JavaContextType.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-11T08:17:12Z
2005-06-22T17:06:40Z
95,709
Bug 95709 [CellEditors] [nls tooling] Strange selection behaviour in the NLS table
M7 1. open an already translated file with lots of strings in the NLS wizard, e.g. UserLibraryPreferencePage 2. select the first value so that the cell ediotor appears 3. use the scroll bar to scoll so that the (still selected) entry is not visible anymore 4. select a new entry -> the table suddendly scrolls and a diff...
verified fixed
ba8404a
["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/nls/ExternalizeWizardPage.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-07T15:57:31Z
2005-05-18T07:06:40Z
102,494
Bug 102494 [navigation] NPE finding occurences of static initializer
I20050627 Steps: 1) Open the type hierarchy of a source class that has a static initializer. 2) In the lower pane of the Hiearchy tab, rightclick on the static initializer and pick menu item OccurencesInFile>>Identifier. See this NPE in the Error Log: java.lang.NullPointerException at org.eclipse.jdt.ui.actions.FindOcc...
verified fixed
078d963
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindOccurrencesInFileAction.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-04T10:41:11Z
2005-07-01T15:00:00Z
97,279
Bug 97279 [refactoring] Generalize Type throws NPE
3.1-RC1 test pass cannot execute Refactor>Generalize Type, get an NPE anytime. Example: JUnit in src, open Protectable.java, execute refactoring. java.lang.NullPointerException at org.eclipse.jdt.internal.corext.refactoring.structure.ChangeTypeRefactoring.determineSelection(ChangeTypeRefactoring.java:691) at org.eclips...
resolved fixed
ba3f69b
["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ChangeTypeRefactoring.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-04T10:31:32Z
2005-05-30T16:20:00Z
99,688
Bug 99688 [refactoring] Use supertype where possible puts type parameter in import
In RC2. Project attached. I'm having problems minimizing this report--it seems to be dependent on a number of factors. Import the attached project, and try to Use Supertype where Possible on TransactionList, converting it to ArrayList<E>. The only change made is to AccountantTests, where the following line gets added t...
resolved fixed
d6df66e
["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/constraints/SuperTypeConstraintsCreator.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-04T10:24:03Z
2005-06-13T16:26:40Z
96,580
Bug 96580 [JUnit] can create two launch configurations with the same name
Against N20050525-0010. Steps to reproduce: 1) Create a project named "directions", with a package named also named "directions". (I'll attach an example) 2) Select the project name, and Run As > JUnit Test 3) Select the package name, and Run As > JUnit Test Two launches named "directions" are created. Interestingly, i...
resolved fixed
330b194
["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnitLaunchShortcut.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-01T09:19:11Z
2005-05-25T08:33:20Z
94,414
Bug 94414 Use Supertype Where Possible should sort supertypes
I20050509-2010 - run Use Supertype Where Possible on org.eclipse.pde.internal.build.FeatureWriter => The supertypes seem to be ordered randomly: PrintWriter, Flushable, Writer, XMLWriter, ... Expected: a meaningful order, e.g. alphabetical, an explainable tree traversal, ... . Best would be a tree of supertypes, like i...
resolved fixed
6f74c9e
["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/UseSupertypeWizard.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-01T09:08:51Z
2005-05-10T15:46:40Z
101,953
Bug 101953 Junit truncates failure trace messages
(RC4) This came up in the newsgroup some time ago, but I can't find a bug. The junit view will truncate long trace messages, making comparisons of long assertions impossible within eclipse. If the messages are copied to the clipboard and then pasted into an editor, the full message is included. The junit view should ne...
resolved fixed
4d1fb65
["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/FailureTableDisplay.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/FailureTrace.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/ITraceDisplay.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestRun...
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-01T09:01:32Z
2005-06-27T22:06:40Z
82,268
Bug 82268 JUnit View: Scroll Lock does not lock list in Failure tab [JUnit]
I20050104-1600 JUnit View: Scroll Lock does not lock list in Failure tab. Only locks Hierarchy.
resolved fixed
b0595f6
["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/FailureTab.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-07-01T08:44:45Z
2005-01-05T18:33:20Z
101,211
Bug 101211 Generalize Type disables after cancelling Change Method Signature
null
verified fixed
a892691
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ChangeTypeAction.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-30T18:12:10Z
2005-06-22T08:46:40Z
99,995
Bug 99995 [code assist] Code Assist for parameterized anonymous types: overridden methods for raw, not parameterized
I20050610-1757 (3.1RC2) public class Anon { void test() { new java.util.ArrayList<Integer>() } } Invoke content assist after 'ArrayList<Integer>(' and choose the anonymous. -> The methods to be overridden are constructed for a raw ArrayList (they have their 'E's replaced by 'Object' instead of 'Integer').
verified fixed
4ede2f6
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/AnonymousTypeCompletionProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/java/CompletionProposalCollector.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-30T09:42:25Z
2005-06-14T17:26:40Z
101,863
Bug 101863 [refactoring] Move member type to new file: assertion failure
3.1-RC4 - have the CU I will attach - try to Refactor>Move Nested Type to New File on nested type 'Domain<T>' -> AFE: Caused by: org.eclipse.jdt.internal.corext.Assert$AssertionFailedException: null argument; at org.eclipse.jdt.internal.corext.Assert.isNotNull(Assert.java:108) at org.eclipse.jdt.internal.corext.Assert....
verified fixed
6903bcb
["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveInnerToTopRefactoring.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-30T08:54:04Z
2005-06-27T13:46:40Z
94,287
Bug 94287 [JUnit] Some issues with "Add JUnit Libraries"
Version: 3.1.0 Build id: I20050509-2010 Steps to reproduce: 1.) Create a new Class Test 2.) Open Quick Fix on the class Name: Only Rename in File is shown 3.) add "implements MouseListener" to the class 4.) Open Quick Fix on the class Name: Now you got "Add JUnit Libraries" as an entry of the Quick Fix list Actual Resu...
resolved fixed
ac8aa34
["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/JUnitQuickFixProcessor.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-29T08:45:30Z
2005-05-10T13:00:00Z
101,453
Bug 101453 java.lang.UnsupportedOperationException: Operation only supported in JLS2 AST
I'm using a Code-Generator Plugin which works fine with Eclipse 3.0 but receive the Exception "java.lang.UnsupportedOperationException: Operation only supported in JLS2 AST " when doing the same generation (as works fine with Eclipse 3.0) with Eclipse 3.1M6: ava.lang.reflect.InvocationTargetException at com.jcoffee.dev...
verified fixed
f027095
["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/SortMembersOperation.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-27T16:25:57Z
2005-06-23T15:20:00Z
101,625
Bug 101625 NPE when cancelling Call Hierachy search
In I20050624-0010. 1) Start a Call Hierarchy query that is likely to take a long time (for example, on SomeClass.toString()). 2) Try to cancel the search before it completes. The search is not cancelled, and the following is written to the error log: java.lang.NullPointerException at org.eclipse.ui.progress.DeferredTre...
verified fixed
9f58c62
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/CallHierarchyContentProvider.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/CallHierarchyViewPart.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-24T16:15:26Z
2005-06-24T13:33:20Z
98,160
Bug 98160 Errors trying to install new JRE's
After installing 3.1, I noticed that I was getting an "unbound" message next to the JRE system lib in my project. I tried to go to the "Installed JRE's" tab in the Preferenes, but it gave me a "Cound Not Accept Changes: the currently displayed page contains invalid values" window. Clicking back and forth a bit would ev...
verified fixed
c8c8b23
["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/util/JavaModelUtil.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/BuildPathSupport.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-22T17:28:35Z
2005-06-02T19:20:00Z
101,209
Bug 101209 Refactoring undo timeout should be more than 5 minutes
RC3 The refactoring undo timeout is currently set to 5 minutes. It should be 20 to 30 minutes. (When testing it I set it to 5 minutes and it seems that I released the values I used for testing).
verified fixed
89384e2
["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/changes/DynamicValidationStateChange.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-22T14:59:08Z
2005-06-22T08:46:40Z
101,174
Bug 101174 [navigation] NPE while opening the class file editor via hyperlinking
Eclipse 3.1 RC2. Walking a class inheritance tree by ctrl+clicking. I have binary-imported the o.e.jdt.ui plugin. I started at o.e.jdt.ui.internal.preferences.ImportOrganizePreferencePage, then walked up the tree of classes it extends. In PropertyAndPreferencePage, I ctrl+click PreferencePage, and then I get an error d...
verified fixed
2b884d7
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ClassFileDocumentProvider.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-22T09:31:33Z
2005-06-22T00:26:40Z
101,029
Bug 101029 Remove log statement from JavaElementLabels
null
verified fixed
80dad0f
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/JavaElementLabels.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-21T15:42:01Z
2005-06-21T13:20:00Z
82,839
Bug 82839 [misc] Breakpoint icons disappear
I am using 3.1M4 1 - Open a file and set a breakpoint. The breakpoint icon appears in the left and right margins. 2 - Close the file. 3 - Open the same file. Note the breakpoint icons no longer appear. The breakpoint is still there but the icons don't appear and you can't select them. This is a major problem because I ...
verified fixed
ed77511
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ClassFileMarkerAnnotationModel.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-21T15:38:38Z
2005-01-14T13:40:00Z
100,846
Bug 100846 [refactoring] Change method signature does not disallow changing implementations of binary methods
3.1 RC3 Steps to reproduce: - Create compilation unit class MyList extends ArrayList { public String toString() { return super.toString(); } } - Add parameter to MyList#toString() -> CMS does not complain, causing a semantic change -> During the computation of the method ripple, the refactoring should generate an error...
verified fixed
39279dd
["org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/ChangeSignatureTests.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/RefactoringCoreMessages.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/cod...
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-21T15:15:11Z
2005-06-20T15:06:40Z
99,919
Bug 99919 NPE while manipulating class path
RC2 All manipulations are done using the build path actions from the context menu - create project Test with source folder src - add to package p and q - exclude q from build path - make src/q a source folder - remove it as a source folder - include q observe: exception below and all source folders in the project are n...
verified fixed
b58a58f
["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/buildpath/ClasspathModifier.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-17T12:08:14Z
2005-06-14T09:06:40Z
100,429
Bug 100429 dropping on type hierarchy method viewer updates input
20050616-0010 - Open a element in the type hierarchy - enable 'Show all inherited methods' - select a method from Object, drop it to itself - Hierarchy of Object is built Drop to itself can happen easely when clicking quickly on entries. Dropping on the method viewer should be disabled (and I think it was before)
verified fixed
c9c166a
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyViewPart.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-17T12:06:42Z
2005-06-16T16:40:00Z
100,443
Bug 100443 [open type] Open type dialog doesn't show compress JDK information anymore
null
verified fixed
e1b9494
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/TypeInfoViewer.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-17T09:22:37Z
2005-06-16T16:40:00Z
99,539
Bug 99539 [5.0] Totally weird java structure comparing of enums
Eclipse: 3.1.0, Build id: I20050610-1757 It seems that Java structure compare is totally broken with inner enums. Consider *inner* interface and two inner enum classes which implement that: class A { protected interface PropsSetter { void applyTo(Properties props); } protected enum Algorithms implements PropsSetter { B...
verified fixed
94a91cd
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaStructureCreator.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaStructureDiffViewer.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-16T14:03:14Z
2005-06-12T15:26:40Z
99,725
Bug 99725 [typing] Moving first line of header comment increases indentation
Given a class like this: /** * Header comment */ class Foo { } Put the cursor on the first line, and use Alt+Down, Alt+Up to move it down, and then up. An extra space is added in front. If you now select the entire file and use Source > Indent, the whole file is shifted one character to the right.
verified fixed
af7dbe0
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/IndentUtil.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaMoveLinesAction.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-16T13:46:46Z
2005-06-13T16:26:40Z
99,944
Bug 99944 Quick Fix offers to change type to List<> [quick fix][5.0]
I20050610-1757 (3.1RC2) import java.util.List; class Try { void m(List<? extends Number> arg) { Lsit raw= arg; } } The first quick fix offers to change 'Lsit' to 'List<>'. The problem is that arg is a capture type and the quick fix does not seem to use the import structure to get a valid type from the capture.
verified fixed
364f721
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/UnresolvedElementsSubProcessor.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-16T13:43:39Z
2005-06-14T11:53:20Z
99,503
Bug 99503 [5.0][enum] overridden method decorators/indicators not shown
I20050610-1200 For enums methods which implementing interface methods there is no overriden method decorator in the method outline view and no overriden method indicator on the vertical left ruler in the editor. Example code (inner enum and interface both in the another class): protected interface PropsSetter { void ap...
verified fixed
cfe5bc5
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/OverrideIndicatorLabelDecorator.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-16T13:25:51Z
2005-06-11T08:53:20Z
99,681
Bug 99681 [refactoring] Convert anonymous creates unnecessary fields for enum types
In RC2. Given import java.util.HashSet; public class Exposer { enum Color { RED, GREEN, BLUE; } /** * @param args */ public static void main(String[] args) { new HashSet<Color>() { public void addAllColors() { add(Color.RED); add(Color.GREEN); add(Color.BLUE); } }; } } Converting the HashSet to nested creates three unu...
verified fixed
6262176
["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ConvertAnonymousToNestedRefactoring.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-16T13:25:41Z
2005-06-13T16:26:40Z
100,389
Bug 100389 Infer Type Arguments removes too many casts and causes name clashes
null
verified fixed
7468019
["org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuAnonymous01/in/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuAnonymous01/out/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuFieldAccess02/out/A.java", "org.eclipse.jdt.ui.test...
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-16T13:23:15Z
2005-06-16T13:53:20Z
99,605
Bug 99605 [refactoring][refactoring] Move member type to new file does not update type parameters
In RC2. Given code: class Sub extends ArrayList<Sub.Color> { static class Color {} } Move Member Type to New File on Color. The type parameter is not updated, leading to a compile error.
verified fixed
7699ac2
["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveInnerToTopRefactoring.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-16T12:08:54Z
2005-06-13T10:53:20Z
99,886
Bug 99886 [package explorer] Package Explorer focus is not synchronized with the active editor part
During startup Package Explorer tree is closed regardless of the editor currently opened.
verified fixed
17949f2
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerPart.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-16T10:56:54Z
2005-06-14T06:20:00Z
99,736
Bug 99736 [render] Hide non-public members hides public enum constants.
Found in 3.1RC2. In the option view, the "Hide Non-Public Members" option hides enum constants, even when they are public. Example: public enum Foo { BAR } with "Hide Non-Public Members" on, just shows Foo. Should show BAR as a child of Foo.
verified fixed
f23e09b
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/MemberFilter.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-16T09:58:29Z
2005-06-13T16:26:40Z
100,310
Bug 100310 [JUnit] Invalid thread access when confirming save dialog when creating test suite
RC2 - create test class MyTest.java: package tests; import junit.framework.TestCase; public class MyTest extends TestCase { public void test1() throws Exception { } } - select MyTest.java and choose New > JUnit Test Suite, click Finish - make the generated suite dirty - select MyTest.java and choose New > JUnit Test Su...
verified fixed
acf90f0
["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/wizards/NewTestSuiteCreationWizard.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-16T09:20:30Z
2005-06-15T21:13:20Z
99,395
Bug 99395 [properties] [dialogs] NPE when viewing jar properties
3.1RC2 June 10th 0010 build - use the Plug-in Project creation wizard to create a Hello World project - in the Package Explorer expand the new project's Plug-in Dependencies item and select its first child (org.eclipse.ui_3.1.0.jar - ...) - right-click -> Properties - click OK in the properties dialog and you'll get th...
verified fixed
564c455
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavadocConfigurationPropertyPage.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-16T07:15:55Z
2005-06-10T16:13:20Z
100,155
Bug 100155 [hovering] Hover labels for local variables
RC2 Hover over a local variable, e.g. x. The hover shows: 'int p.Try2.m().x' in 3.0 we showed 'int x - p.Try2.m()' which I think is much better. As a side note, the important information should be (besides the type of the variable), that this is a local variable or a parameter. class Try2 { int m() { int x = 0; return ...
verified fixed
cc3a4f9
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavadocHover.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-15T17:19:56Z
2005-06-15T12:53:20Z
99,789
Bug 99789 [refactoring] Move Member Type to New File destroys variable declarations
Eclipse 3.1RC2: Executing "Move Member Type to New File" on the class A.B in public class A { public static class B { @SuppressWarnings("unused") private final String a, b; public B(String a1, String b1) { a = a1; b = b1; } public String getA() { return a; } public String getB() { return b; } } } results in public clas...
verified fixed
1b36b4b
["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MemberVisibilityAdjustor.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-15T16:49:20Z
2005-06-13T19:13:20Z
99,742
Bug 99742 [JUnit] New JUnit Test Case wizard fails with overridden methods
I20050610-1757 (3.1RC2) Create new test case for this class; select all methods for stub creation. import java.util.AbstractCollection; import java.util.Iterator; public class Coll extends AbstractCollection { public Iterator iterator() { return null; } public int size() { return 0; } } An empty file CollTest.java is c...
verified fixed
905af4b
["org.eclipse.jdt.junit/src/org/eclipse/jdt/junit/wizards/NewTestCaseWizardPageOne.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-15T16:49:17Z
2005-06-13T16:26:40Z
99,392
Bug 99392 [refactoring] Use Supertype Where Possible... leaves dialog open
I20050610-0010 + plug-in export for smoke 1. Have A.java like: ---------------------------- public class A { void foo() { C c= null; c.toString(); } } class B extends A {} class C extends B {} ---------------------------- 2. select 'C' after 'class' 3. Refactor > Use Supertype Where Possible... 4. seelct 'Object' 5. pr...
verified fixed
6d3e9d9
["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/UseSuperTypeProcessor.java", "org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/UseSupertypeWizard.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-15T16:48:07Z
2005-06-10T16:13:20Z
99,958
Bug 99958 [refactoring] NPE in Infer Type Arguments
3.1 RC2 Steps to reproduce: - Workspace with JDT UI imported in source - All dependencies of JDT UI imported as linked binary projects -> Invoke Infer Type Arguments on JDT UI -> Following NPE occurs: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:327) at o...
verified fixed
7081b3c
["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/types/TypeEnvironment.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-15T16:13:31Z
2005-06-14T14:40:00Z
99,644
Bug 99644 [quick fix] Unused parameter quick fixes have disappeared (regression?)
In RC2, with warnings enabled for unused parameters: public void foo(int x) { } A quick fix on the warning on x gives "No suggestions available". In N20050608-0010, it gives three options: add @SuppressWarnings to the parameter, add @SuppressWarnings to the method, and remove the parameter. These are all gone. Is this ...
verified fixed
cd91e0a
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ModifierCorrectionSubProcessor.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-15T16:09:46Z
2005-06-13T13:40:00Z
100,196
Bug 100196 [typing] Move lines acts strangely when moving a javadoc start
null
verified fixed
b6dcb8d
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/IndentUtil.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-15T16:08:16Z
2005-06-15T15:40:00Z
99,626
Bug 99626 [type hierarchy] Quick Type Hierarchy shows incorrect type hierarchy for parameterized types [hierarchy]
3.1 RC2 class Top<E> { void add(E[] e) {} } class Sub extends Top<String> { void add(String[] s) {} } - Press Ctrl+T on Top#add(E[]) -> Sub is listed in the hierarchy, but not rendered as an implementing or defining class Note that the type hierarchy view correctly handles this case
verified fixed
e853064
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/HierarchyInformationControl.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-15T15:42:04Z
2005-06-13T13:40:00Z
100,174
Bug 100174 [preferences] New link on Java Editor pref page does not honor dialog font
null
verified fixed
d7f2464
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorAppearanceConfigurationBlock.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-15T14:55:36Z
2005-06-15T12:53:20Z
99,974
Bug 99974 [refactoring] Inline method deletes all comments
In RC2. Given code: public class Foo { private int bar() { // an important fact about a int a = 1; // an important fact about returning return a; // one final precious thought } private void baz() { bar(); } } Inlining bar deletes all of the inline comments.
resolved fixed
e0ad70c
["org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/simple_in/TestComment1.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/simple_out/TestComment1.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/InlineMet...
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-15T09:59:17Z
2005-06-14T14:40:00Z
99,714
Bug 99714 [preferences] Java Editor preference page should have a link to Text Editor
I20050610-1757 (3.1RC2) The Java Editor preference page has lost its link to the Text Editor preference page. The link should look like the one from the Properties File Editor prefs page.
verified fixed
dd1aa40
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorAppearanceConfigurationBlock.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-14T16:36:25Z
2005-06-13T16:26:40Z
99,812
Bug 99812 [navigation] Outliner doesn't highlight the name of the package declaration for package-info
RC2. 1) Create a project P with src/bin as source/output folders 2) Create a package 'p' 3) Create a file in this package that contains: @java.lang.Deprecated package p; Click on the package declaration in the outliner and you get the position of the 'p' in Deprecated. It looks like the first 'p' is highlighted. This l...
verified fixed
cad2438
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-14T16:20:33Z
2005-06-13T19:13:20Z
99,921
Bug 99921 Empty working set name remains in working set group
3.1 RC3. If an empty working set is present (see bug ) the working set filter group always restores this one if none was selected before. I approve this one for 3.1 RC3 since the bug affects all JDT views and the fix is trivial. Dirk?
verified fixed
6842c48
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/WorkingSetFilterActionGroup.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-14T10:08:49Z
2005-06-14T09:06:40Z
99,585
Bug 99585 NPE in FileSpec
3.1 RC2 Steps to reproduce: - Checkout project org.eclipse.jdt.ui.vcm - Expand project in the package explorer - Browse through the folders of the JRE_LIB container -> The following exception occurs: java.lang.NullPointerException at org.eclipse.core.internal.content.FileSpec.getMappingKeyFor (FileSpec.java:57) at org....
verified fixed
ffd6967
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/StorageLabelProvider.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-13T16:01:28Z
2005-06-13T10:53:20Z
99,471
Bug 99471 JDK compliance on New Java project wizard doesn't change compiler compliance
I20050610-1200 - create a new workspace - install a 1.4 and a 1.5 JDK - open new project wizard o select a specific compliance. Choose 5.0 Observe: the JDK is set to 1.5 however the compiler compliance for the project is left on 1.4. Martin, am I missing something her
verified fixed
bcae193
["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/util/JavaModelUtil.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/JavaProjectWizardSecondPage.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-13T09:34:28Z
2005-06-10T21:46:40Z
99,339
Bug 99339 NPE during Use Supertype Refactoring [refactoring]
3.1 RC1 Steps to reproduce: - Invoke Use Supertype Refactoring - Proceed until preview - Go back and select other type -> NPE on fEnvironment, which has been null for performance reasons
verified fixed
f8b67f0
["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/constraints/SuperTypeRefactoringProcessor.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-10T12:57:39Z
2005-06-10T13:26:40Z
97,468
Bug 97468 AFE during preview in Use Supertype Refactoring [refactoring]
3.1 RC1 Steps to reproduce: - Create JUnit project - Invoke Use SuperType on TestCaseClassLoader -> In the preview page, drill down to the TestCaseClassLoader change -> Following assertion failure occurs org.eclipse.ltk.internal.core.refactoring.AssertionFailedException: assertion failed: Wrong root edit at org.eclipse...
verified fixed
2986b97
["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/UseSuperTypeProcessor.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-10T12:49:51Z
2005-05-31T14:33:20Z
99,124
Bug 99124 Infer generic types generates doubled type parameter
Against N20050609-0010. void foo() { List<List<String>> l = new ArrayList(); } Infer Generic Type Arguments gives the uncompiling void foo() { List<List<String>> l = new ArrayList<List<String><String>>(); }
verified fixed
d2bfcbd
["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/generics/InferTypeArgumentsRefactoring.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T16:12:38Z
2005-06-09T09:40:00Z
99,110
Bug 99110 NPE when opening quick refactor menu shortly after editing
N20050609-0010 I cannot reproduce reliably, but this exception sometimes happens when I open the quick refactor menu by pressing Alt+Shift+T shortly after having edited and saved a CU. When I press Alt+Shift+T again, the menu opens without problems. java.lang.NullPointerException at org.eclipse.jdt.internal.corext.refa...
verified fixed
f703fc0
["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/RefactoringAvailabilityTester.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T15:32:27Z
2005-06-09T09:40:00Z
45,399
Bug 45399 [painting] Background changes to yellow when pressing Ctrl in the Java editor
I have not yet found a set of steps to predictably reproduce this, although it seems to be related to using the ctrl key (I frequently use ctrl-left and ctrl-right to move the cursor between words) in the Java editor over an extended period of time. 1. Whenever the ctrl key is pressed, all the text between the current ...
verified fixed
ae5e79b
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaCompletionProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/LazyJavaCompletionProposal.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T15:16:41Z
2003-10-22T16:26:40Z
99,140
Bug 99140 [preferences] Syntax coloring preference page does not update preview
N20050609-0010 + JDT/Core & UI from HEAD Syntax coloring preference page does not update preview: - enable 'Auto(un)boxed expressions' -> changing one of the color or font settings does not update the preview - toggling 'Enable' updates the preview
verified fixed
55e8a6e
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/SemanticHighlightingManager.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T14:18:24Z
2005-06-09T12:26:40Z
99,135
Bug 99135 [typing] Blank line causes javadoc indentation regression
In N20050609-0010. Given a javadoc comment: /** * oops, extra return there. */ public static String noop() { return ""; } Select All on the file, then Source > Correct Indentation. N20050608-0010 leaves this unchanged. N20050609-0010 (the latest), formats this as /** * oops, extra return there. */ Likely minor (who doe...
verified fixed
b6835dd
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/IndentAction.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T13:58:50Z
2005-06-09T12:26:40Z
94,651
Bug 94651 conver to new for loop quick assist: variable name proposals should include inserted name and standard proposals
null
verified fixed
52c3eba
["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/ConvertIterableLoopQuickFixTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ConvertForLoopProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ConvertIterableLoopProposal.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T13:56:25Z
2005-05-11T11:13:20Z
92,578
Bug 92578 [typing] Javadoc of overriding methods no longer created
When I stepped up to M6, the "javadoc" of overriding methods (i.e. methods that are overriding an inherited method or implementing an interface method) were no longer being produced. For example if you typed "/*" and then hit enter, it use to produce: /* (non-javadoc) * @see java.lang.Runnable#run() */ It isn't doing t...
verified fixed
3609b67
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/javadoc/JavaDocAutoIndentStrategy.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T13:31:30Z
2005-04-25T14:40:00Z
99,108
Bug 99108 Quick-fix duplicates comments
null
verified fixed
1d77429
["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/surround/SurroundWithTryCatchRefactoring.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T13:28:06Z
2005-06-09T09:40:00Z
97,478
Bug 97478 [refactoring] Extract method from generic method
I think I've already logged this somewhere. My apologies if true. Given method: import java.util.List; public class A { private <T> int foo(List<T> list) { return list.size(); } } Extract expression "list.size()". This leads to a compile error, because the generic parameter <T> is not added to the new method.
verified fixed
73125e6
["org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_in/A_test1113.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_in/A_test1114.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractM...
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T13:03:36Z
2005-05-31T14:33:20Z
98,731
Bug 98731 Move member type to new file adds incorrect type variable
In N20050607-0010: public class Cells { static class Cell<T> { } void raw(Cell arg) { } } Move Cell to a new file. Result: public class Cells { void raw(Cell<T> arg) { } }
verified fixed
2c6aae5
["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveInnerToTopRefactoring.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T12:49:35Z
2005-06-07T16:00:00Z
97,236
Bug 97236 [refactoring] Use supertype where possible: does not work for generic type
null
verified fixed
5675401
["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/UseSuperTypeProcessor.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2005-06-09T12:41:08Z
2005-05-30T13:33:20Z
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
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CodeAssistConfigurationBlock.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.java"]
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
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
["org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCUTypeParams9/in/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCUTypeParams9/out/A.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/InferTypeArgumentsTests.java", "org...
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
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
["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/util/IFileTypeInfo.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/util/JarFileEntryTypeInfo.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/util/TypeInfo.java", "org.eclipse.jdt.ui/core", "e...
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
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
["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/AnonymousTypeCompletionProposal.java"]
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