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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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/PreferencesMessages.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,236 | Bug 97236 [refactoring] Use supertype where possible: does not work for generic type | null | verified fixed | 5675401 | 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 | org.eclipse.jdt.ui/core | |
97,236 | Bug 97236 [refactoring] Use supertype where possible: does not work for generic type | null | verified fixed | 5675401 | 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 | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/UseSuperTypeProcessor.java | |
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 | 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 | org.eclipse.jdt.ui/core | |
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 | 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 | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveInnerToTopRefactoring.java | |
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 | 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 | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_in/A_test1113.java | |
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 | 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 | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_in/A_test1114.java | |
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 | 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 | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_in/A_test1115.java | |
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 | 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 | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_in/A_test1116.java | |
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 | 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 | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_in/A_test1117.java | |
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 | 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 | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_in/A_test1118.java | |
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 | 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 | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_in/A_test1119.java | |
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 | 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 | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_out/A_test1113.java | |
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 | 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 | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_out/A_test1114.java | |
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 | 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 | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_out/A_test1115.java | |
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 | 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 | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_out/A_test1116.java | |
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 | 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 | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_out/A_test1117.java | |
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 | 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 | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_out/A_test1118.java | |
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 | 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 | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_out/A_test1119.java | |
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 | 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 | org.eclipse.jdt.ui.tests.refactoring/test | |
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 | 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 | cases/org/eclipse/jdt/ui/tests/refactoring/ExtractMethodTests.java | |
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 | 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 | org.eclipse.jdt.ui/core | |
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 | 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 | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractMethodRefactoring.java | |
99,108 | Bug 99108 Quick-fix duplicates comments | null | verified fixed | 1d77429 | 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 | org.eclipse.jdt.ui/core | |
99,108 | Bug 99108 Quick-fix duplicates comments | null | verified fixed | 1d77429 | 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 | refactoring/org/eclipse/jdt/internal/corext/refactoring/surround/SurroundWithTryCatchRefactoring.java | |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/javadoc/JavaDocAutoIndentStrategy.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... |
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 | 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 | 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... |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ConvertForLoopProposal.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... |
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 | 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 | 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... |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/IndentAction.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... |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/SemanticHighlightingManager.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... |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaCompletionProposal.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... |
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 | 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 | 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... |
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 | 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 | org.eclipse.jdt.ui/core | |
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 | 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 | refactoring/org/eclipse/jdt/internal/corext/refactoring/RefactoringAvailabilityTester.java | |
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 | 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 | org.eclipse.jdt.ui/core | |
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 | 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 | refactoring/org/eclipse/jdt/internal/corext/refactoring/generics/InferTypeArgumentsRefactoring.java | |
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 | 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 | org.eclipse.jdt.ui/core | |
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 | 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 | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/UseSuperTypeProcessor.java | |
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 | 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 | org.eclipse.jdt.ui/core | |
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 | 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 | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/constraints/SuperTypeRefactoringProcessor.java | |
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 | 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 | org.eclipse.jdt.ui/core | |
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 | 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 | extension/org/eclipse/jdt/internal/corext/util/JavaModelUtil.java | |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/JavaProjectWizardSecondPage.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... |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/StorageLabelProvider.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... |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/WorkingSetFilterActionGroup.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... |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.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... |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorAppearanceConfigurationBlock.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... |
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 | 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 | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/simple_in/TestComment1.java | |
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 | 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 | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/simple_out/TestComment1.java | |
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 | 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 | org.eclipse.jdt.ui.tests.refactoring/test | |
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 | 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 | cases/org/eclipse/jdt/ui/tests/refactoring/InlineMethodTests.java | |
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 | 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 | org.eclipse.jdt.ui/core | |
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 | 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 | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/SourceProvider.java | |
100,174 | Bug 100174 [preferences] New link on Java Editor pref page does not honor dialog font | null | verified fixed | d7f2464 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorAppearanceConfigurationBlock.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... |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/HierarchyInformationControl.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... |
100,196 | Bug 100196 [typing] Move lines acts strangely when moving a javadoc start | null | verified fixed | b6dcb8d | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/IndentUtil.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... |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ModifierCorrectionSubProcessor.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... |
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 | 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 | org.eclipse.jdt.ui/core | |
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 | 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 | refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/types/TypeEnvironment.java | |
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 | 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 | org.eclipse.jdt.ui/core | |
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 | 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 | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/UseSuperTypeProcessor.java | |
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 | 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 | org.eclipse.jdt.ui/ui | |
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 | 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 | refactoring/org/eclipse/jdt/internal/ui/refactoring/UseSupertypeWizard.java | |
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 | 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 | org.eclipse.jdt.junit/src/org/eclipse/jdt/junit/wizards/NewTestCaseWizardPageOne.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... |
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 | 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 | org.eclipse.jdt.ui/core | |
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 | 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 | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MemberVisibilityAdjustor.java | |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavadocHover.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... |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavadocConfigurationPropertyPage.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... |
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 | 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 | org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/wizards/NewTestSuiteCreationWizard.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... |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/MemberFilter.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... |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerPart.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... |
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 | 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 | org.eclipse.jdt.ui/core | |
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 | 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 | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveInnerToTopRefactoring.java | |
100,389 | Bug 100389 Infer Type Arguments removes too many casts and causes name clashes | null | verified fixed | 7468019 | 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 | org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuAnonymous01/in/A.java | |
100,389 | Bug 100389 Infer Type Arguments removes too many casts and causes name clashes | null | verified fixed | 7468019 | 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 | org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuAnonymous01/out/A.java | |
100,389 | Bug 100389 Infer Type Arguments removes too many casts and causes name clashes | null | verified fixed | 7468019 | 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 | org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuFieldAccess02/out/A.java | package p;
import java.util.*;
class Cell<T> {
List<T> t;
public void setT(AbstractList<T> t) {
this.t= t;
}
public Collection<T> getT() {
return t;
}
}
class CellTest {
public static void main(String[] args) {
ArrayList<Boolean> booleanList= new ArrayList<Boolean>();
booleanList.add(Boolean.FALSE);
... |
100,389 | Bug 100389 Infer Type Arguments removes too many casts and causes name clashes | null | verified fixed | 7468019 | 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 | org.eclipse.jdt.ui.tests.refactoring/test | |
100,389 | Bug 100389 Infer Type Arguments removes too many casts and causes name clashes | null | verified fixed | 7468019 | 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 | cases/org/eclipse/jdt/ui/tests/refactoring/InferTypeArgumentsTests.java | |
100,389 | Bug 100389 Infer Type Arguments removes too many casts and causes name clashes | null | verified fixed | 7468019 | 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 | org.eclipse.jdt.ui/core | |
100,389 | Bug 100389 Infer Type Arguments removes too many casts and causes name clashes | null | verified fixed | 7468019 | 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 | refactoring/org/eclipse/jdt/internal/corext/refactoring/generics/InferTypeArgumentsConstraintCreator.java | |
100,389 | Bug 100389 Infer Type Arguments removes too many casts and causes name clashes | null | verified fixed | 7468019 | 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 | org.eclipse.jdt.ui/core | |
100,389 | Bug 100389 Infer Type Arguments removes too many casts and causes name clashes | null | verified fixed | 7468019 | 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 | refactoring/org/eclipse/jdt/internal/corext/refactoring/generics/InferTypeArgumentsConstraintsSolver.java | |
100,389 | Bug 100389 Infer Type Arguments removes too many casts and causes name clashes | null | verified fixed | 7468019 | 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 | org.eclipse.jdt.ui/core | |
100,389 | Bug 100389 Infer Type Arguments removes too many casts and causes name clashes | null | verified fixed | 7468019 | 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 | refactoring/org/eclipse/jdt/internal/corext/refactoring/generics/InferTypeArgumentsTCModel.java | |
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 | 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 | org.eclipse.jdt.ui/core | |
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 | 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 | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ConvertAnonymousToNestedRefactoring.java | |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/OverrideIndicatorLabelDecorator.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... |
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 | 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 | 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... |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/IndentUtil.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... |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaMoveLinesAction.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... |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaStructureCreator.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... |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaStructureDiffViewer.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... |
100,443 | Bug 100443 [open type] Open type dialog doesn't show compress JDK information anymore | null | verified fixed | e1b9494 | 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 | 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... |
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 | 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 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyViewPart.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... |
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 | 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 | org.eclipse.jdt.ui/core | |
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 | 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 | extension/org/eclipse/jdt/internal/corext/buildpath/ClasspathModifier.java | |
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 | 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 | org.eclipse.jdt.ui.tests.refactoring/test | |
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 | 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 | cases/org/eclipse/jdt/ui/tests/refactoring/ChangeSignatureTests.java | |
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 | 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 | org.eclipse.jdt.ui/core |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.