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] |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
150,149 | Bug 150149 [quick assist] Surround with template "flickers" | I20060704-0800 Given: package test; public class E { public void foo() { int i = 10; final int j = 10; System.out.println(i); System.out.println(j); int k = 10; k++; System.out.println(k); System.out.println(i); System.out.println(j); } } 1. Select System.out.println(i); System.out.println(j); int k = 10; k++; System.o... | resolved fixed | 769cc56 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/template/contentassist/SurroundWithTemplateProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-10T15:00:07Z | 2006-07-10T14:00:00Z |
139,938 | Bug 139938 [quick assist] Surround with template adds unnecessary spaces | 3.2. RC2 Given: public void foo() { System.out.println(10); } 1. Select line ' System.out.println(10);' 2. 'Alt-Shift-Z' 3. Surround with runnable Is: public void foo() { Runnable runnable = new Runnable() { public void run() { System.out.println(10); } }; <-Tab or spaces here } Should: have no spaces at the end | resolved fixed | 3eeb70b | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/AdvancedQuickAssistTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/SurroundWithTemplateTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/template/contentassist/SurroundWithTemplateProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-10T14:45:45Z | 2006-05-03T12:40:00Z |
139,675 | Bug 139675 [quick fix] Convert 'if-else Blocks to Statements' is a no-op | 3.2. RC2 Given: if (true) if (false) <cursor> { ; } else { ; } 1. Cursor to <cursor> 2. Ctrl-1 3. Change 'if-else' blocks to Statement Is: nothing happens Should: if (true) if (false) ; else ; | resolved fixed | 56414b9 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/AssistQuickFixTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/ControlStatementsFix.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-10T10:52:49Z | 2006-05-02T14:26:40Z |
150,083 | Bug 150083 Incremental find is disabled when text editor is embedded in MultiPageEditorPart | It looks like AbstractTextEditor.getStatusLineManager() is the culprit. MultiPageEditorSite.getActionBarContributor() always returns null so AbstractTextEditor.getStatusLineManager() will always return null. Shouldn't AbstractTextEditor.getStatusLineManager() just call getEditorSite().getActionBars().getStatusLineManag... | resolved fixed | a8c276c | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/AddImportOnSelectionAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OrganizeImportsAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-10T09:56:38Z | 2006-07-09T01:53:20Z |
149,990 | Bug 149990 [clean up] Remove block changes semantic of if-then-else | I20060704-0800 Given: package test; public class E { public void foo() { if (false) { while (true) if (false) ; } else ; } } 1. Cursor at ^ 2. Ctrl-1 Is: 'Change if block to stmt' is available Should: Not be available Same for clean up. But clean up is much harder to fix. Quick fix is legal here: if (false) { while (tr... | verified fixed | 62a4ef6 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/AssistQuickFixTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/ControlStatementsFix.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-10T09:22:04Z | 2006-07-07T13:46:40Z |
147,429 | Bug 147429 [syntax highlighting] Autoboxing coloring not working on negative numbers | In preferences, Java->Editor->Syntax coloring->Java->Auto(un)boxed expressions is enabled, the coloring is not working for negative numbers, although auto-boxing still occurs. | resolved fixed | bcf4daa | ["org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/AutoboxingSemanticHighlightingTest.java", "org.eclipse.jdt.text.tests/testResources/semanticHighlightingTest1/Autoboxing.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/SemanticHighlightings.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-07T15:25:37Z | 2006-06-16T12:13:20Z |
149,800 | Bug 149800 [JUnit] NPE while copying editor code to clipboard during JUnit run | Build 3.2.0 While JUnit tests were running, I selected some text in a Java editor, and performed a copy action. A dialog popped up saying a NPE had occurred, see trace below (from console). It seems that there got some confusion in dispatch in between the editor thread and the Junit run. !ENTRY org.eclipse.ui 4 0 2006-... | verified fixed | 3509c31 | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/JUnitCopyAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-06T14:24:03Z | 2006-07-06T10:00:00Z |
149,797 | Bug 149797 [quick assist] NPE in ConvertForLoopOperation | I20060704-0800 Given: package test; public class E { private int ba r() {return 0;} public void foo(int[] ints) { for^(int i = 0, max = ints.length, b= bar(); i < max; i++) { System.out.println(ints[i] + b); } } } 1. _Select_ space at ^ 2. Ctrl-1 Is: java.lang.NullPointerException at org.eclipse.jdt.internal.corext.fix... | verified fixed | f52ca9a | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/ConvertForLoopQuickFixTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/ConvertForLoopOperation.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-06T10:06:59Z | 2006-07-06T10:00:00Z |
148,419 | Bug 148419 [clean up] convert to enhanced for loop ignores assignment to array if field access | I ran the source clean up on a large body of code with the use enhanced for loop where possible option turned on. Fortunately, I examined the results of the refactoring before applying. The clean-up turned code such as this: Foo[] foos = new Foo[10]; for (int i = 0; i < foos.length; ++i) { foos[i] = new Foo(); ... set ... | verified fixed | e1d1a4d | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/ConvertForLoopQuickFixTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/ConvertForLoopOperation.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-06T09:45:06Z | 2006-06-23T16:26:40Z |
149,540 | Bug 149540 [ltk] problems overriding TextFileChange#commit() [refactoring] | The implementation of TextFileChange.commit() may not actually perform the commit: if (needsSaving()) { fBuffer.commit(pm, false); } If I override the method, I cannot use the same condition, as needsSaving() is private. Even if I rely on the TextFileChange.commit() by calling super.commit() I then do not know if the c... | verified fixed | b12d08c | ["org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/core/refactoring/TextFileChange.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-05T12:49:25Z | 2006-07-04T10:46:40Z |
149,496 | Bug 149496 [hashcode/equals] Generate hashCode() violates naming conventions | null | verified fixed | 602c88e | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/source/GenerateHashCodeEqualsTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/GenerateHashCodeEqualsOperation.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-05T12:28:51Z | 2006-07-03T20:53:20Z |
104,941 | Bug 104941 [getter setter] generating getters disobeys declaration order [code generation] | When generating getters for a class, the getters were generated in alphabetical order, whereas I expected them to be generated in the same order as the variables declared in the class. | verified fixed | 5fe1ceb | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/AddGetterSetterAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-05T12:25:13Z | 2005-07-24T07:26:40Z |
140,416 | Bug 140416 [content assist] restore proposal computers if none present | null | verified fixed | dd95c05 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/ContentAssistProcessor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaTextMessages.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-05T12:19:34Z | 2006-05-05T17:26:40Z |
144,747 | Bug 144747 [preferences] TVT3.2:TCT807: KO: Extra mnemonic on Content Assist Advanced preference page | OS : RHEL 3.1 Must fix or not a must fix: NO Build date: 20060530 Component Name: Base Windows menu Blocking: No Language: KO Bitmap Location: V:\defects\KO\04.001510.gif Tester Name: Junghan Yoo Problem Description: Extra mnemonic. Please see the screen shot attached below. Steps to reproduce: On the menu bar from the... | verified fixed | 48404c4 | ["org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/ErrorWizardPage.java", "org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/ui/refactoring/history/RefactoringHistoryWizard.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-05T11:13:13Z | 2006-05-31T18:26:40Z |
139,961 | Bug 139961 [junit] JUnit runner collecting classes outside of src tree | I have tests which extend XMLTestCase from XMLUnit. The JUnit runner attempts to execute the tests in XMLTestCase which causes a failure because it has no tests. I do not think that the runner should attempt to run tests in XMLTestCase since its not in the source tree. | resolved fixed | ea17241 | ["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/TestTestSearchEngine.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-05T10:49:31Z | 2006-05-03T15:26:40Z |
149,468 | Bug 149468 [generate delegate] is missing final methods | See this example, in class B Eclipse is requested to generate delegate methods from A: public class A { public void a() {} public final void b() {} } public class B { A a; // Methods generated by Eclipse public void a() { a.a(); } // b() is missing! } Method b() is not generated. | verified fixed | 9aada57 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/source/GenerateDelegateMethodsTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/StubUtility2.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-05T10:32:29Z | 2006-07-03T15:20:00Z |
145,028 | Bug 145028 [clean up] Use of modifier final messes volatile variables | When applying the Clean Up Wizard with the option "Use modifier 'final' where possible" active, it doesn't check if an variable has the "volatile" keyword. The result is a compiler error for affected classes. | resolved fixed | d79e8df | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/VariableDeclarationFix.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-04T14:26:04Z | 2006-06-02T09:20:00Z |
148,373 | Bug 148373 [quick assist] Duplicate final modifiers added during code assist. | I have a method called public Double[] calc(Integer int){...} The IDE tries to assist me to add final modifiers to the int variable. But when I allow the IDE to perform this for me, it changes the method to the following : public Double[] calc(final final Integer int){...} | resolved fixed | 172517c | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/AssistQuickFixTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/VariableDeclarationFix.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-04T14:19:33Z | 2006-06-23T10:53:20Z |
149,440 | Bug 149440 [build path] Default src folder rendered as package in new project wizard | I20060628-1135 1. New Java Project 2. Type in name 'P01' 3. Seperate src and output folder 4. Next> Is: default package is shown and 'src' is shown as a package Should: No default package and 'src' is a source folder Select "package" 'src' and 'Add package src to bp': org.eclipse.core.runtime.CoreException: The folder ... | resolved fixed | 9a0ca19 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/BuildPathDialog.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/BuildPathsBlock.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/newsourcepage/DialogPackageExplorer.java", "org.eclipse.jdt.ui/ui/org/ecli... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-04T13:42:56Z | 2006-07-03T09:46:40Z |
148,635 | Bug 148635 [build path] "Ok" button in "New Variable Classpath Entry" window is disabled | Goto Project->Properties->Java Build Path->Libraries for a java project Click Add Variable Click Configure Variables to add a new variable Click Ok to get back to the "New Variable Classpath Entry" The "Ok" button in this window is disabled. The only way out of this window is to click "cancel" (which does not cancel th... | resolved fixed | 8fb31dc | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/ClasspathVariablesPreferencePage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/NewVariableEntryDialog.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/VariableBlock.java", "org.eclipse.jdt.ui/ui/or... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-04T12:38:41Z | 2006-06-26T11:06:40Z |
149,114 | Bug 149114 [quick fix] 'create class' quickfix with varargs finds wrong superclass | (place cursor on 'UnknownClass', hit quick fix, choose 'create class') import java.util.*; public class Strange { { // suggests "class UnknownClass implements Number[]" (doesn't do varargs) Arrays.<Number>asList( new UnknownClass() ); // suggests "class UnknownClass" (same issue, I assume) Arrays.<Number>asList( new In... | verified fixed | d9460c7 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/UnresolvedVariablesQuickFixTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ASTResolving.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-04T09:13:25Z | 2006-06-29T05:46:40Z |
100,763 | Bug 100763 [content assist] parameterized type proposals set wrong selection when entered using a trigger character | 3.1-RC3 test pass - have the cu below - code assist after Col - select 'Collection' using the arrow keys (don't insert the proposal yet) - insert the proposal by pressing '.' expected: selection after the '.' actual: the closing '>' is selected This happens because the generic java type proposal selects the first ambig... | resolved fixed | 633fde7 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/GenericJavaTypeProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/LazyJavaTypeCompletionProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-03T14:52:05Z | 2005-06-20T09:33:20Z |
93,121 | Bug 93121 [5.0][content assist] parameter hints for generic types | I20050426 we should offer parameter hints for the type parameters to a generic type: Map<K,V> map; | resolved fixed | e091064 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaHeuristicScanner.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/ExperimentalResultCollector.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/GenericJavaTypeProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-03T13:42:39Z | 2005-04-28T14:53:20Z |
144,902 | Bug 144902 [navigation] Show in Package Explorer has no effect | 3.2 RC5 - in the Keys preference page, bind a key sequence like Ctrl+Alt+P to Show In Package Explorer (in the Navigate category) - in a Java editor, press the key sequence - it has no effect | verified fixed | d91a961 | ["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 | 2006-07-03T12:54:19Z | 2006-06-01T16:40:00Z |
140,565 | Bug 140565 [clean up] 'change all acces through instances' + 'remove unused imports' leads to code with fatal errors | Version: 3.2.0 RC2 Build id: I20060428-1315 Given are the following example classes: ClassA.java: public class ClassA { static ClassB instanceOfClassB; } ClassB.java: public class ClassB { static ClassC instanceOfClassC; } ClassC.java: public class ClassC { static ClassD instanceOfClassD; } ClassD.java: public class Cl... | verified fixed | 99088b7 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/CodeStyleFix.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-03T10:22:51Z | 2006-05-08T14:53:20Z |
139,000 | Bug 139000 [import rewrite] wrong import decision in ContextSensitiveImportRewriteContext for nested types | null | resolved fixed | 4ecf74f | ["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/ContextSensitiveImportRewriteContext.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-07-03T09:18:57Z | 2006-04-27T17:46:40Z |
144,058 | Bug 144058 [build path] Default Java project layout should create separate source and output folders | Eclipse 3.2 Currently, when a user creates a new Java project, the default project layout is set to use the project's folder as the root for source and output class files. This creates a very cluttered directory structure for the user, should there ever be a need to examine the project's folder in the "Navigator" view ... | resolved fixed | 334a5e7 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/NewJavaProjectPreferencePage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-30T14:52:02Z | 2006-05-27T00:33:20Z |
140,777 | Bug 140777 [nls tooling] Wrong dialog title for 'Externalize Strings...' | null | resolved fixed | 7fe4848 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ExternalizeStringsAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-30T14:34:29Z | 2006-05-09T13:06:40Z |
148,954 | Bug 148954 [search] FindImplementorsAction fills log with newNotPresentException | I20060627-1200 I often get these while editing files. You should also check all other Find actions. !ENTRY org.eclipse.jdt.ui 4 10001 2006-06-27 15:23:26.445 !MESSAGE An error occurred while accessing a Java element !STACK 1 Java Model Exception: Java Model Status [<anonymous #3> [in createTextWidget(Composite, int) [i... | verified fixed | ec5583f | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindImplementorsAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-28T14:42:43Z | 2006-06-28T10:20:00Z |
148,617 | Bug 148617 [ltk] TextFileChange: violates API-contract of TextChange.acquireDocument | When acquiring the document from a TextFileChange twice, the counter <code>fAcquireCount</code> is not incremented to two. Therefore on the first call to releaseDocument, the document is released. The documentation of TextChange indicates that only the second call to releaseDocument should do this. | resolved fixed | 956630c | ["org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/core/refactoring/TextFileChange.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-27T16:33:09Z | 2006-06-26T08:20:00Z |
32,936 | Bug 32936 [pull up] No progress monitoring when switching to method page [refactoring] | RC1 - JUnit setup - select TestCase.countTestCases - pull up - press next observe: you don't see and task or subtaskm labels. | verified fixed | f2b6599 | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/PullUpMethodPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-27T10:00:41Z | 2003-02-25T10:46:40Z |
148,664 | Bug 148664 [spec] IJavaModel#getJavaProject(String) throws IAE for invalid name | I20060620-1010 IJavaModel#getJavaProject(String) throws an IllegalArgumentException for an invalid project name, see IWorkspaceRoot#getProject(String). #getJavaProject() should either repeat the constraints on the name, or it should accept any name. Steps to reproduce: - open Run... dialog - doubleclick "Junit Plug-in ... | verified fixed | e7066b7 | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnitMainTab.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-26T16:00:00Z | 2006-06-26T16:40:00Z |
74,979 | Bug 74979 [JUnit] key bindings for 'Rerun Test' | There are two specific keybindings I want for JUnit: 1) Run the last test run (function just like the button on the JUnit view) 2) Run As JUnit ( Just like choosing Run As JUnit from the run menu). | verified fixed | 2462e6b | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestRunnerViewPart.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-26T13:51:36Z | 2004-09-24T18:20:00Z |
10,694 | Bug 10694 [templates] need more flexible type mechanism | Templates provide some rudimentary support for indicating the type of a variable. If you use ${array}, for instance, the template tries to pick an array for that variable. But the built-in types are already insufficient, and I cannot imagine that we could possibly satisfy 80% of the users with only built in types. (For... | closed fixed | 0558c84 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/template/java/CompilationUnitCompletion.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/template/java/CompilationUnitContext.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/template/java/Elem... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-23T09:54:42Z | 2002-03-04T16:40:00Z |
36,195 | Bug 36195 [code templates] make method name available as variable | For code generation in the preferences | java | code generation | code and comments in case of exception there seems to be available only: date, dollar, exception_type, exception_var, time, todo, user, year Is it possible to make the enclosing method name accessible the exception is generated in? Thanks Ido | resolved fixed | 3b68f78 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/StubUtility.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/template/java/CodeTemplateContextType.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/surround/Surro... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-23T08:23:36Z | 2003-04-08T11:06:40Z |
148,115 | Bug 148115 errors in JDT user and isv doc | I used a software tool to run accessibility checks of the content in the <> Doc and found some problems. I will attach the reports, with a list of the problems sorted by severity (most severe first). Each problem lists the file, line number, severity and error. Please have a look at the reports and act as follows: 1. F... | verified fixed | 31c69a7 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/ISharedImages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/JavaElementImageDescriptor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/JavaElementLabels.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/JavaUI.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/PreferenceConst... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-22T09:14:49Z | 2006-06-21T20:00:00Z |
140,214 | Bug 140214 [clean up] PotentialProgrammingProblemFix must be cleaned up | N20060504-0010 The PotentialProgrammingProblemsFix class must be cleaned up: - Fallback must be removed - Policy needed when calculation of id fails (warn the user) - ITypeBinding must be used to get the binary name - Code needs to be cleaned up it's hard to understand and read | resolved fixed | be24339 | ["org.eclipse.jdt.ui.tests/performance/org/eclipse/jdt/ui/tests/performance/views/CleanUpPerfTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/AbstractSerialVersionOperation.java", "org.eclipse.jdt.ui/c... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-22T08:44:18Z | 2006-05-04T19:13:20Z |
105,743 | Bug 105743 [generalize type] Internal Error with exception in catch clause | The following Java code is written under JDK 1.5.04 with the Java-Editor of Eclipse 3.1 (WinXP): ----------- <snip> ----------------- import java.io.*; public class C { public void f(File f) { try { FileInputStream is = new FileInputStream(f); } catch (FileNotFoundException ex) { System.err.println("file not found"); }... | verified fixed | 18fecfb | ["org.eclipse.jdt.ui.tests.refactoring/resources/ChangeTypeRefactoring/positive/A_testCatchClause_in.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ChangeTypeRefactoring/positive/A_testCatchClause_out.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/ChangeTypeRefac... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-19T12:36:09Z | 2005-08-01T21:00:00Z |
97,280 | Bug 97280 [use supertype] Use Supertype Refactoring and Refactor menu not available in class file editor [refactoring] | 3.1 RC1 Steps to reproduce: - Open binary type java.util.BitSet - Invoke context menu on selected type name -> No refactoring menu available -> Content outline correctly shows refactor menu with menu entry Use Supertype | verified fixed | 3a5c968 | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/InlineConstantAction.java", "org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/InlineMethodAction.java", "org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/MoveIns... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-16T13:57:43Z | 2005-05-30T16:20:00Z |
99,963 | Bug 99963 [extract local] on generic 'this' needs type arguments | I20050610-1757 (3.1RC2) Extract Local Variable, Extract Method and Introduce Parameter don't add type arguments when extracting 'this' of a generic type: Select 'this' in the class below => the type is always just MyArrayList. Expected: MyArrayList<E>. class MyArrayList<E> extends ArrayList<E> { void inspect() { for (I... | resolved fixed | 5f39a67 | ["org.eclipse.jdt.ui.tests.refactoring/resources/ExtractTemp/canExtract/A_test99_in.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractTemp/canExtract/A_test99_out.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/ExtractTempTests.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-16T10:17:03Z | 2005-06-14T14:40:00Z |
140,111 | Bug 140111 [JUnit] Dynamic help is not displayed in the JUnit Launch configuration main tab | Dynamic help is not displayed in the Launch configuration JUnit main tab It is thought fixed as follows. 1) In org.eclipse.jdt.junit plug-in src/org/eclipse/jdt/internal/junit/launcher/JUnitMainTab.java Insert following line to public void createControl(Composite parent)method PlatformUI.getWorkbench().getHelpSystem().... | resolved fixed | ced0be6 | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnitMainTab.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/IJUnitHelpContextIds.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-16T09:36:25Z | 2006-05-04T02:33:20Z |
77,067 | Bug 77067 [package explorer] Select All in the Package Explorer | Please support Select All in the package explorer. | verified fixed | cb2af77 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/SelectAllAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerActionGroup.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-16T08:53:07Z | 2004-10-26T22:33:20Z |
95,232 | Bug 95232 [working sets] Edit Working Set dialog is too slow | The performance of the Edit Working Set dialog for a Java Working Set is really slow, it takes a lot of time to open and finish. My current project have arround 4500 files and near 100 in the working set, the machine is a Pentium 3 1Ghz with 512ram with near half memory not in use. The dialog takes near 20 seconds to o... | verified fixed | 495f12b | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/JavaWorkingSetPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-16T08:07:50Z | 2005-05-13T21:33:20Z |
93,292 | Bug 93292 [render] Package Explorer file icons not updated when file associations change | null | verified fixed | 0128f10 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/AppearanceAwareLabelProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-16T06:25:00Z | 2005-04-29T15:53:20Z |
146,532 | Bug 146532 [inline] inline method produces compile error with this-qualified remote field access | Version: 3.2.0 Build id: I20060602-1317 When applying refactor / inline on the call to nonRecursiveAnalyseCodeLeaf in Z, the resulting code does not compile. Source files: X.java public class X { X left, right; Type resolvedType; public void checkNPE(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) ... | resolved fixed | e0101d3 | ["org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/receiver_in/TestRemoteFieldReceiver.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/receiver_out/TestRemoteFieldReceiver.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/t... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-15T17:37:34Z | 2006-06-12T11:00:00Z |
139,730 | Bug 139730 [ltk][scripting] inappropriate internal error when apply script fails [refactoring] | Build: 3.2 RC2 1) Checked out org.eclipse.equinox.common from repository 2) Applied two refactorings (rename method and add parameter, script attached). 3) Exported the plugin as a JAR file, including the refactoring script. 4) Unzipped resulting JAR file to get the script file on disk 5) Deleted project from workspace... | resolved fixed | e035b1a | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/JavaRefactoringDescriptor.java", "org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/core/refactoring/PerformRefactoringHistoryOperation.java", "org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/ui/refactoring/history/RefactoringHis... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-15T11:00:19Z | 2006-05-02T17:13:20Z |
78,929 | Bug 78929 [package explorer] search-result naviagtion dones honor "link with editor" | hi. when I navigate through the a search result via the buttons "show next match" / "show previuous match" the editor shows correctly the right java file, but the package explorer is not correctly updated ("link with editor" is set) cya - Marcel. | verified fixed | 19e9d16 | ["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 | 2006-06-15T09:33:45Z | 2004-11-18T12:13:20Z |
144,785 | Bug 144785 [generate constructor] should not declare parameters as final when members are final [code generation] | 3.2 RC6 When I declare a set of private final member variables, then execute the Source option 'Generate Constructor Using Fields', the generated constructor parameters are also declared final. I don't think the finality of the member variables are really related to the finality of the parameters, and I think the param... | verified fixed | 5780425 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/source/GenerateConstructorUsingFieldsTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/StubUtility2.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-15T09:32:22Z | 2006-05-31T21:13:20Z |
67,589 | Bug 67589 [reorg] cannot move folder into folder of non-java project [refactoring] | Cannot move folder into a folder inside a non-java project with ReorgMove. The move dialog only shows the simple project, without any children. Reason: StandardJavaElementContentProvider#getChildren(..) doesn't return children of an IProject. PackageExplorerContentProvider#getChildren has special code, which explains w... | verified fixed | fa4f066 | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/DestinationContentProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-15T07:49:16Z | 2004-06-17T08:13:20Z |
147,181 | Bug 147181 [implementation] Incorrect use of instanceof TextSelection | null | resolved fixed | 3d9468f | ["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 | 2006-06-15T07:46:49Z | 2006-06-15T00:06:40Z |
144,941 | Bug 144941 [reorg] NPE in ReorgPolicyFactory [refactoring] | 1. Create a Java Project JavaProj 2. Create a Java Class JC1 in Package P1 3. Create a basic Project NonJavaProj 4. Select JC1.java in the Package Explorer and Refactor ... Move it using the context menu 5. On the Move wizard, select NonJavaProj as the destination. 6. Check the "Update fully qualified names in non-Java... | verified fixed | 6c76496 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/ReorgPolicyFactory.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-14T16:27:47Z | 2006-06-01T19:26:40Z |
129,547 | Bug 129547 [hashcode/equals] add preference for instanceof [code generation] | Hibernate can load a POJO from a DB. However, it instanciates a proxy class instead of the real POJO class. This allows it to lazily load the attributes when a getter is invoked. However, if equals() or hashCode() is called before any of these getters is called, then the attribute values are null or 0. If there was an ... | verified fixed | 7255aac | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/source/GenerateHashCodeEqualsTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/GenerateHashCodeEqualsOperation.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaUIMessages.java", "org.eclipse.jdt.ui/... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-14T16:20:06Z | 2006-02-27T11:33:20Z |
146,813 | Bug 146813 [navigation] Changing default background color for Declaration view does nothing | I'm using dark background so the default of Declaration view (kind of yellow) doesn't look good. I've tried to change the background color, but it didn't work. The option was added in #41867 bug, along with Javadoc view background color. The later works ok. | verified fixed | 9d51747 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/infoviews/SourceView.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-14T14:20:56Z | 2006-06-13T12:00:00Z |
141,277 | Bug 141277 [ltk] details pane of refactoring history control flickers when switching between refactorings [refactoring] | null | resolved fixed | ba8ad8b | ["org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/history/RefactoringHistoryControl.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-14T12:50:52Z | 2006-05-11T12:20:00Z |
98,069 | Bug 98069 [jar exporter] generated exporter scripts should use encoding preference | null | resolved fixed | 401a226 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarFileExportOperation.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarPackageWriter.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javadocexport/JavadocOptionsManager.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/intern... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-14T12:26:11Z | 2005-06-02T08:13:20Z |
140,315 | Bug 140315 [ltk][scripting] refactoring history is empty if compilation unit selected [refactoring] | 1) have a project with a CU and some refactorings done 2) selected the CU in the package explorer, File -> Export -> JAR file 3) check 'Export refactorings...' and see that the list of aviable refactoring is empty if you select the project in the package explorer everything works fine. | resolved fixed | 29daf46 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarPackageWizardPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-13T16:36:58Z | 2006-05-05T09:06:40Z |
139,007 | Bug 139007 [migrate jar] title does not change when selecting refactorings [refactoring] | steps: 1) open 'Replace JAR' and select a JAR file which has no refactoring info 2) title message is getting changed to 'Jar file does not...' and 'Next' button is disabled 3) select JAR which has refactoring info 4) title message does not change, 'Next' button is enabled | verified fixed | e1a5005 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarimport/JarImportWizardPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-13T16:27:10Z | 2006-04-27T17:46:40Z |
145,784 | Bug 145784 [build path] BuildPathSupport is violating ClasspathContainerInitializer api contract | null | verified fixed | 3ac5a8c | ["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 | 2006-06-13T09:05:42Z | 2006-06-07T14:20:00Z |
144,426 | Bug 144426 [compiler] Compiler incorrectly reports "assignment to variable has no effect" when it is a duplicate | Eclipse 3.2RC4 for Win23: eclipse-SDK-3.2RC4-win32.zip Running on Windows XP SP2 public class Test { public static void main(String[] args) { int x = 2; if (true) { int x = 4; } } } "x = 4" is underlined with multiple markers: "The assignment to variable x has no effect", and "Duplicate local variable x". I believe tha... | verified fixed | 29cfa40 | ["org.eclipse.jdt.ui.tests.refactoring/resources/RenameTemp/canRename/A_test62_in.java", "org.eclipse.jdt.ui.tests.refactoring/resources/RenameTemp/canRename/A_test62_out.java", "org.eclipse.jdt.ui.tests.refactoring/resources/RenameTemp/canRename/A_test63_in.java", "org.eclipse.jdt.ui.tests.refactoring/resources/Rename... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-12T12:58:41Z | 2006-05-30T11:53:20Z |
139,142 | Bug 139142 [ltk][scripting] indicate on wich project a refactoring is applied [refactoring] | N20060428 Apply a refactoring script. On the second page it should be somehow indicated on which project the refactoring will be applied. I.e. when having a refactoring 'Extract method 'private void init()' form 'main.Main.start()'to 'main.Main' the user does not know which project will be modified if there are multibl... | verified fixed | 5e40f3d | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/JavaRefactoringDescriptorComment.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/refactor... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-08T16:19:19Z | 2006-04-28T13:13:20Z |
141,501 | Bug 141501 [jar exporter] remove unused methods in JarPackagerUtil | 3.2 RC4 The method getRefactoringHistory(...) is unused and should be removed | resolved fixed | a59b088 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarPackagerUtil.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-06-08T16:14:26Z | 2006-05-12T07:46:40Z |
129,929 | Bug 129929 IDE no longer responsive when junit tests are running | Build 3.2m5 When running the junit tests for JDTCore, I observed that it is almost impossible to further edit some files (e.g. buildnotes) until the tests have completed. I accept the tests are using lots of CPU, but this is on a different VM instance. Other applications are still responsive (email client, web browser,... | verified fixed | d5f4a85 | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/model/TestElement.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/model/TestSuiteElement.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/model/TestElement.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/jun... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-30T14:48:26Z | 2006-03-01T13:33:20Z |
143,481 | Bug 143481 [misc] Multiple entries in view menu per category | I20060519-1206 1. Start with a fresh workspace 2. Create new java project 3. past: package pack; /** * @category API */ public class Controller { /** * @category internal */ private int value; /** * @category API getter */ public int getValue() { return value; } /** * @category setter */ public void setValue(int v) { v... | verified fixed | 2776ca5 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/CategoryFilterActionGroup.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-25T10:31:38Z | 2006-05-24T14:13:20Z |
141,527 | Bug 141527 Message in "Add New Source Folder" wizard doesnt expand "relative to" | null | verified fixed | 0da8efa | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewWizardMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/AddSourceFolderWizardPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-24T13:38:03Z | 2006-05-12T13:20:00Z |
141,994 | Bug 141994 [JUnit] Runner does not find any test case when a class fails loading | * Symptoms ---------- When a test case class fails to load (in my case, there was an exception in the static initializer) the "Run all tests..." launch configuration does nothing at all. * Steps to reproduce -------------------- 1) Create a new empty Java project 2) Create a new JUnit test case TestDate, adding JUnit t... | verified fixed | 3f6d7cd | ["org.eclipse.jdt.junit.runtime/src/org/eclipse/jdt/internal/junit/runner/RemoteTestRunner.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-23T17:05:23Z | 2006-05-16T14:33:20Z |
143,171 | Bug 143171 [misc] 'Update conflicts' dialog appears on save - save no longer possible | R3.1.2 and 3.2 RC5 1. create a Java project with a CU 2. add some text and save 2. close the Java editor 3. open the Java editor for above class 4. change the text without saving 5. from the Package Explorer's context menu select: Replace With > Previous From Local History 6. Give focus to Java editor 7. click 'No' to ... | verified fixed | 761f2ba | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitDocumentProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-23T16:00:13Z | 2006-05-23T10:26:40Z |
142,266 | Bug 142266 [implementation] Remove workaround for bug 137091 | null | verified fixed | 06470aa | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/BasicJavaEditorActionContributor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-23T15:54:20Z | 2006-05-17T15:33:20Z |
138,972 | Bug 138972 [replace jar][inline method] Missing warning message | My client is using a method which has been inlined now. Performing 'Replace JAR' does not show that refactoring which seem reasonable to me. However, one could get a warning message about the change and its consequences. | verified fixed | 1061e0e | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarPackageWizardPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-12T15:33:39Z | 2006-04-27T15:00:00Z |
141,400 | Bug 141400 [Model Sync] New non-Java files do not appear in Sync View | I20060511-0800 The Java model content provider does not show new non java files in the sync view. Repro: 1. Check out the same project twice in the workspace. 2. Create a binary file and commit it in one of the projects (I created a .png). 3. Sync the other project, notice how the binary file is missing from the incomi... | verified fixed | 78f3f66 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/model/JavaSynchronizationContentProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-12T13:27:08Z | 2006-05-11T20:40:00Z |
140,553 | Bug 140553 [junit] New JUnit launch configs mapped onto wrong existing ones | 3.2 RC3 When starting a JUnit test via (context) menu it first tries to find an existing launch configuration. The code that does the matching does not take the loader into account and hence unexpected results can happen, e.g. saying that no tests are found even though there are tests. For 3.2 we either need to fix the... | verified fixed | be23b3a | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/JUnitMessages.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/launcher/TestKindRegistry.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/util/TestSearchEngine.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/inte... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-12T09:06:45Z | 2006-05-08T12:06:40Z |
140,901 | Bug 140901 Deletion of source-controlled file now considered a refactor, causing interactive checkout prompts | Using Eclipse 3.2 RC3, the act of deleting a source controlled file using our source control plugin now causes a validateEdit event to be fired as if the deletion it is necessary to check out the file in our "pessimistic filesystem" team plugin. Our source control provider does not need (indeed does not WANT) to have t... | verified fixed | 72e2252 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/JavaRenameProcessor.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RenameModifications.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-11T17:28:03Z | 2006-05-09T18:40:00Z |
141,213 | Bug 141213 [ccp] new artwork for 'copy qualified name' | null | verified fixed | d4a0607 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaPluginImages.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-11T17:25:56Z | 2006-05-11T06:46:40Z |
140,551 | Bug 140551 [junit] Strange ignored node in JUnit view | 3.2 RC3 The ignored items in the JUnit view can't be opened. A dialog is shown. This is probably caused by the 'hacked' name. This should be fixed for 3.2. | verified fixed | 076350d | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/JUnitMessages.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/model/TestCaseElement.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/model/TestRunSession.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-11T16:19:03Z | 2006-05-08T12:06:40Z |
140,982 | Bug 140982 Refactor->Use Supertype causes Stack overflow error | I got this error, which shut down my JVM, after I selected "Refactor->Use Supertype Where Possible...", in the Package Explorer. The trace is: java.lang.StackOverflowError at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1842) at org.eclipse.swt.widgets.Tree.callWindowProc(Tree.java:1292) at org.eclipse.swt.... | verified fixed | 7bbfdf5 | ["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 | 2006-05-11T15:32:34Z | 2006-05-10T05:46:40Z |
140,761 | Bug 140761 [junit] decouple filtering from presentation mode | null | verified fixed | d73a425 | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestRunnerViewPart.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-11T14:59:53Z | 2006-05-09T10:20:00Z |
140,332 | Bug 140332 [migrate jar] Migrate jar fails to create stubs for types in default package | 3.2 RC2 Steps to reproduce: - Create project 'Test' with following cu in default package: public class MyTest { } - Create a client project 'Test' with MyTest in a JAR on the build path - Rename MyTest to MyTests - Export JAR with this refactoring - Invoke Migrate JAR file -> NPE occurs java.lang.NullPointerException a... | verified fixed | 2b6af12 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/binary/AbstractCodeCreationOperation.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-11T10:50:16Z | 2006-05-05T11:53:20Z |
140,755 | Bug 140755 [refactoring] Updated artwork for Refactor->History... | 3.2 RC3 The dialog to show the workspace refactoring history needs a title icon. Attaching patch... | verified fixed | 980b826 | ["org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/RefactoringPluginImages.java", "org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/scripting/ShowRefactoringHistoryWizard.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-10T19:04:48Z | 2006-05-09T10:20:00Z |
140,548 | Bug 140548 [junit] NPE when opening history menu after removing launch configuration | I20060505-1306 Steps: - run a JUnit Test - delete the launch configuration - open JUnit view history menu or click on the toolbar button The user can only get rid of the NPEs by restarting Eclipse or by clicking on the history toolbar button, confirming the error dialog, and then removing the launches from the list. Th... | verified fixed | 8b76973 | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/model/TestRunSession.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/model/TestRunSession.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-10T18:58:21Z | 2006-05-08T12:06:40Z |
139,933 | Bug 139933 [CommonNavigator][Java] Deleting multiple projects does not remove them from project explorer | To reproduce: -Create an enterprise application with a default ejb and web module. -select those three -delete, choose option "delete content on file system". What happens: only the first of the three projects is removed from the project explorer, the other two seem to be left. But they are removed in the file system, ... | closed fixed | 1332160 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/navigator/JavaNavigatorContentProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-10T18:55:37Z | 2006-05-03T12:40:00Z |
140,465 | Bug 140465 [JUnit] Test failure: sometimes can't run JUnit tests from runtime workbench | null | verified fixed | 07a5535 | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnitLaunchConfiguration.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-09T17:02:55Z | 2006-05-06T10:06:40Z |
139,899 | Bug 139899 [junit] Rerun failed first does not work with JUnit 4 | 3.2 RC2 Could not find a setup where rerun failed first works with JUnit 4 testcases | verified fixed | f7c42af | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestRunnerViewPart.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-05T16:26:28Z | 2006-05-03T09:53:20Z |
140,167 | Bug 140167 build path: add source folder acts funnily if an existing folder name is chosen | null | verified fixed | 6f67146 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/AddSourceFolderWizard.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/AddSourceFolderWizardPage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/CreateMultipleSourceFoldersDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-05T16:13:19Z | 2006-05-04T13:40:00Z |
140,289 | Bug 140289 JUnit 4: Arrow remains on class when method is ignored | In RC2. Run this test class: public class ATest { @Ignore @Test public void a() { Assert.fail(); } @Test public void b() { Assert.fail(); } } After running, the class ATest still has a blue arrow, as if it is still "running". | verified fixed | daeeb4d | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/model/TestElement.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/model/TestRunSession.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/model/TestElement.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-05T16:09:45Z | 2006-05-05T03:33:20Z |
129,725 | Bug 129725 JDT JUnit: java.lang.Exception: Unexpected TestElement type for testId '230': | I20060221-1300 I got several exceptions in .log but nothing visibly in the UI. I started the JDT Text tests several times in Debug and Run mode (in sequence, not parallel). I also terminated one of those via Debug view. !ENTRY org.eclipse.jdt.junit 4 4 2006-02-27 17:54:28.022 !MESSAGE Error !STACK 0 java.lang.Exception... | verified fixed | 1f3535a | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/model/ITestSessionListener.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/model/JUnitModel.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/model/TestCaseElement.java", "org.eclipse.jdt.junit.core/src/org/eclipse... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-05T15:01:44Z | 2006-02-28T07:00:00Z |
140,248 | Bug 140248 JUnit4 support should be disabled if launched with 1.4 VM | 3.2 RC2 The JUnit4 support does not work if the workbench is launched with a 1.4 VM. We should disable the JUnit4 support in the UI in that scenario. | verified fixed | 27e3231 | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/JUnitCorePlugin.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/buildpath/BuildPathSupport.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/buildpath/BuildPathSupport.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/i... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-05T14:24:17Z | 2006-05-04T19:13:20Z |
140,291 | Bug 140291 Run both JUnit 3 and JUnit 4 tests in a container | Given a container (project or package) that contains both JUnit 3 and JUnit 4 tests, the user probably intends both test kinds to run when they run all tests in the container. (One of my original patches had this by default, but it doesn't work in the latest patches). | verified fixed | 5bfed04 | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/launcher/JUnit4TestFinder.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnit4TestFinder.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-05T14:19:25Z | 2006-05-05T03:33:20Z |
140,312 | Bug 140312 'Occurrences in File' quick menu (Ctrl+Shift+U) not available in binary class | I20060504-2000 + ZRH plugins from 05-0010 'Occurrences in File' quick menu (Ctrl+Shift+U) is not available in binary classes. This used to work in earlier builds (at least in M4, it worked). | verified fixed | 86c3351 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/OccurrencesSearchMenuAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-05T14:17:23Z | 2006-05-05T09:06:40Z |
140,292 | Bug 140292 RC2: JUnit 4 test finder tries to run abstract test classes | Even if a class looks like a JUnit 4 test, if it is abstract, it cannot be run. However, the JUnit 4 test finder still attempts it. For example: abstract public class CTest { @Test public void b() { } } | verified fixed | 8db4549 | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/launcher/JUnit4TestFinder.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnit4TestFinder.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-05T10:36:08Z | 2006-05-05T03:33:20Z |
140,299 | Bug 140299 failing Serial Version Clean Up test | org.eclipse.core.runtime.CoreException: Serial Version Clean Up: Could not calculate id for class 'test1.E1$3' at org.eclipse.jdt.internal.corext.fix.PotentialProgrammingProblemsFix$SerialVersionHashContext.getSerialVersionId(PotentialProgrammingProblemsFix.java:127) at org.eclipse.jdt.internal.corext.fix.PotentialProg... | verified fixed | 95df622 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-05T10:14:47Z | 2006-05-05T06:20:00Z |
140,164 | Bug 140164 build path: edit source folder has no defined semantics | null | verified fixed | 1735a67 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/AddSourceFolderWizardPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-04T20:25:11Z | 2006-05-04T13:40:00Z |
139,381 | Bug 139381 [clean up] CE when adding generated serial version ID | I get the following exception stacktrace when cleaning up a very special combination of inner classes which I reduced to a small demo class: === Stacktrace ================================================================ java.lang.reflect.InvocationTargetException at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRun... | verified fixed | 0907986 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/AbstractSerialVersionOperation.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/PotentialProgrammingProblemsFix.java", "org.eclipse... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-04T19:03:15Z | 2006-04-29T08:40:00Z |
139,668 | Bug 139668 [quick assist] Surround with runnable is superfluous | 3.2. RC2 1. Select at least one line 2. Ctrl-1 3. A quick assist 'Surround with runnable' is shown The surround with runnable quick assist is the hard coded version of the 'Surround with runnable' template proposal wich can be accessed trough the source menu or through Alt-Shift-Z. Surround with runnable can and should... | verified fixed | 5ae668c | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/AssistQuickFixTest.java", "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/SurroundWithTemplateTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/t... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-04T18:39:44Z | 2006-05-02T14:26:40Z |
140,183 | Bug 140183 [refactor][script] extract superclass does not pull up methods | 1) make sure to have a project A with the following class on two separate workspaces public class Bicycle { public void drive(){ } } 2) in one workspace perform 'extract superclass', method drive is defined by the new superclass. you'll endup with: public class Bicycle extends ADriveable { } public class ADriveable { p... | verified fixed | 3f438d1 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/JavaRefactoringDescriptor.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ExtractInterfaceProcessor.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/ref... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-04T17:33:24Z | 2006-05-04T16:26:40Z |
139,932 | Bug 139932 [quick assist] Surround with runnable removes semicolon | 3.2. RC2 Given: public void foo() { int i= 10; System.out.println(i); } 1. Select line ' int i= 10;' 2. 'Alt-Shift-Z' 3. Surround with runnable Is: int i; Runnable runnable = new Runnable() { public void run() { i = 10 } }; System.out.println(i); Should: int i; Runnable runnable = new Runnable() { public void run() { i... | verified fixed | fe3c9c8 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/template/contentassist/SurroundWithTemplateProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-04T17:09:46Z | 2006-05-03T12:40:00Z |
139,706 | Bug 139706 "Link Source Folder" must check that new folder does not yet exist | If a linked source folder has the same name as a non-source project folder it can't be used properly. Instead, the non-source project folder is shown as source folder presenting it's original content (eg. images). I suggest to show a warning/error message if the name of a linked source equals a non-source project resou... | verified fixed | c377c2b | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/AddSourceFolderWizardPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-04T16:51:16Z | 2006-05-02T14:26:40Z |
139,905 | Bug 139905 [junit] No tests found must not be logged | 3.2 RC2 Steps to reproduce: - Comment all tests in junit.tests.AllTests#suite() - Select package junit.tests - Run as junit test -> No tests found is logged -> Dialog should have caption "JUnit", a better message such as "No testcases have been found in 'junit.tests'" and no details button. | verified fixed | 701d39e | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/JUnitMessages.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnitBaseLaunchConfiguration.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/JUnitMessages.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-04T16:34:49Z | 2006-05-03T09:53:20Z |
139,694 | Bug 139694 [junit] Edit JUnit library dialog issues | I20060428-1315 Steps to reproduce: - Create a new project - Create a JUnit4 testcase in it, using the wizard - Verify that JUnit 4 container is visible under the project - Select JUnit 4, select Configure... -> Font of the current location field is not dialog font, but system font -> The dialog misses the Library wizar... | verified fixed | fed50dd | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/buildpath/JUnitContainerWizardPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-04T16:06:13Z | 2006-05-02T14:26:40Z |
136,746 | Bug 136746 [CommonNavigator] [Java] Java packages disappear when switching to Hierarchical mode | [I20060413-0010] To reproduce: From the Project Explorer view menu, select Package Presentation->Hierarchical. Result: All source folders have no children Expected: package folders appear hierarchically under source folders. | verified fixed | 06de35c | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/navigator/NonEssentialElementsFilter.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/navigator/NonEssentialEmptyInnerPackageFilter.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/navigator/NonEssentialEmptyPackageFilter.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-04T14:13:18Z | 2006-04-13T20:26:40Z |
140,080 | Bug 140080 [CommonNavigator][Java] (NeedsApproval)JavaNavigatorContentProvider should return IWorkspaceRoot as parent | null | verified fixed | c88132c | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/navigator/JavaNavigatorContentProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-04T13:52:13Z | 2006-05-03T21:00:00Z |
139,639 | Bug 139639 Odd alt+shift+T (surround w/ Try-Catch) behavior | I am getting odd and intermittent alt+shift+T behavior. When I first start Eclipse and open an editor with a statement that needs a try-catch block (it is a compilation error when I open my project) and press alt+shift+T, nothing occurs. All other alt+shift commands work ("R" for renaming, etc). If I alt+shift+Z and ca... | verified fixed | 9cccd38 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/SurroundWithTemplateMenuAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2006-05-04T12:54:36Z | 2006-05-01T21:46:40Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.