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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
100,212 | Bug 100212 [refactoring] Encapsulate field breaks static import statement. | To Import.x do Refactor>>EncapsulateField. See the resulting static import statement is illegal. -------------------- bug/Bug.java ---------------------- package bug; import static bug.Import.x; class Bug { int y=x; } -------------------- bug/Import.java ------------------- package bug; class Import { static int x; } | verified fixed | b44ccf7 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-20T15:51:39Z | 2005-06-15T15:40:00Z | org.eclipse.jdt.ui.tests.refactoring/test | |
100,212 | Bug 100212 [refactoring] Encapsulate field breaks static import statement. | To Import.x do Refactor>>EncapsulateField. See the resulting static import statement is illegal. -------------------- bug/Bug.java ---------------------- package bug; import static bug.Import.x; class Bug { int y=x; } -------------------- bug/Import.java ------------------- package bug; class Import { static int x; } | verified fixed | b44ccf7 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-20T15:51:39Z | 2005-06-15T15:40:00Z | cases/org/eclipse/jdt/ui/tests/refactoring/SefTestSetup.java | |
100,212 | Bug 100212 [refactoring] Encapsulate field breaks static import statement. | To Import.x do Refactor>>EncapsulateField. See the resulting static import statement is illegal. -------------------- bug/Bug.java ---------------------- package bug; import static bug.Import.x; class Bug { int y=x; } -------------------- bug/Import.java ------------------- package bug; class Import { static int x; } | verified fixed | b44ccf7 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-20T15:51:39Z | 2005-06-15T15:40:00Z | org.eclipse.jdt.ui.tests.refactoring/test | |
100,212 | Bug 100212 [refactoring] Encapsulate field breaks static import statement. | To Import.x do Refactor>>EncapsulateField. See the resulting static import statement is illegal. -------------------- bug/Bug.java ---------------------- package bug; import static bug.Import.x; class Bug { int y=x; } -------------------- bug/Import.java ------------------- package bug; class Import { static int x; } | verified fixed | b44ccf7 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-20T15:51:39Z | 2005-06-15T15:40:00Z | cases/org/eclipse/jdt/ui/tests/refactoring/SefTests.java | |
100,212 | Bug 100212 [refactoring] Encapsulate field breaks static import statement. | To Import.x do Refactor>>EncapsulateField. See the resulting static import statement is illegal. -------------------- bug/Bug.java ---------------------- package bug; import static bug.Import.x; class Bug { int y=x; } -------------------- bug/Import.java ------------------- package bug; class Import { static int x; } | verified fixed | b44ccf7 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-20T15:51:39Z | 2005-06-15T15:40:00Z | org.eclipse.jdt.ui/core | |
100,212 | Bug 100212 [refactoring] Encapsulate field breaks static import statement. | To Import.x do Refactor>>EncapsulateField. See the resulting static import statement is illegal. -------------------- bug/Bug.java ---------------------- package bug; import static bug.Import.x; class Bug { int y=x; } -------------------- bug/Import.java ------------------- package bug; class Import { static int x; } | verified fixed | b44ccf7 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-20T15:51:39Z | 2005-06-15T15:40:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/sef/AccessAnalyzer.java | |
100,212 | Bug 100212 [refactoring] Encapsulate field breaks static import statement. | To Import.x do Refactor>>EncapsulateField. See the resulting static import statement is illegal. -------------------- bug/Bug.java ---------------------- package bug; import static bug.Import.x; class Bug { int y=x; } -------------------- bug/Import.java ------------------- package bug; class Import { static int x; } | verified fixed | b44ccf7 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-20T15:51:39Z | 2005-06-15T15:40:00Z | org.eclipse.jdt.ui/core | |
100,212 | Bug 100212 [refactoring] Encapsulate field breaks static import statement. | To Import.x do Refactor>>EncapsulateField. See the resulting static import statement is illegal. -------------------- bug/Bug.java ---------------------- package bug; import static bug.Import.x; class Bug { int y=x; } -------------------- bug/Import.java ------------------- package bug; class Import { static int x; } | verified fixed | b44ccf7 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-20T15:51:39Z | 2005-06-15T15:40:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/sef/SelfEncapsulateFieldRefactoring.java | |
116,342 | Bug 116342 [refactoring] [extract method] Pre/post-increment/decrement in loops allowed to be extracted | Try an extract method refactoring on the following code, indicated by the comments: import junit.framework.TestCase; public class BugTest extends TestCase{ public void testLoop(){ int x = 0; for (int i = x; i < 10; i++) //extract here... assertEquals(i,x++); //...to here } } If the refactoring were behavior preserving,... | verified fixed | 0d65b72 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-21T00:01:59Z | 2005-11-14T23:13:20Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/locals_in/A_test577.java | |
116,342 | Bug 116342 [refactoring] [extract method] Pre/post-increment/decrement in loops allowed to be extracted | Try an extract method refactoring on the following code, indicated by the comments: import junit.framework.TestCase; public class BugTest extends TestCase{ public void testLoop(){ int x = 0; for (int i = x; i < 10; i++) //extract here... assertEquals(i,x++); //...to here } } If the refactoring were behavior preserving,... | verified fixed | 0d65b72 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-21T00:01:59Z | 2005-11-14T23:13:20Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/locals_out/A_test577.java | |
116,342 | Bug 116342 [refactoring] [extract method] Pre/post-increment/decrement in loops allowed to be extracted | Try an extract method refactoring on the following code, indicated by the comments: import junit.framework.TestCase; public class BugTest extends TestCase{ public void testLoop(){ int x = 0; for (int i = x; i < 10; i++) //extract here... assertEquals(i,x++); //...to here } } If the refactoring were behavior preserving,... | verified fixed | 0d65b72 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-21T00:01:59Z | 2005-11-14T23:13:20Z | org.eclipse.jdt.ui.tests.refactoring/test | |
116,342 | Bug 116342 [refactoring] [extract method] Pre/post-increment/decrement in loops allowed to be extracted | Try an extract method refactoring on the following code, indicated by the comments: import junit.framework.TestCase; public class BugTest extends TestCase{ public void testLoop(){ int x = 0; for (int i = x; i < 10; i++) //extract here... assertEquals(i,x++); //...to here } } If the refactoring were behavior preserving,... | verified fixed | 0d65b72 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-21T00:01:59Z | 2005-11-14T23:13:20Z | cases/org/eclipse/jdt/ui/tests/refactoring/ExtractMethodTests.java | |
116,342 | Bug 116342 [refactoring] [extract method] Pre/post-increment/decrement in loops allowed to be extracted | Try an extract method refactoring on the following code, indicated by the comments: import junit.framework.TestCase; public class BugTest extends TestCase{ public void testLoop(){ int x = 0; for (int i = x; i < 10; i++) //extract here... assertEquals(i,x++); //...to here } } If the refactoring were behavior preserving,... | verified fixed | 0d65b72 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-21T00:01:59Z | 2005-11-14T23:13:20Z | org.eclipse.jdt.ui/core | |
116,342 | Bug 116342 [refactoring] [extract method] Pre/post-increment/decrement in loops allowed to be extracted | Try an extract method refactoring on the following code, indicated by the comments: import junit.framework.TestCase; public class BugTest extends TestCase{ public void testLoop(){ int x = 0; for (int i = x; i < 10; i++) //extract here... assertEquals(i,x++); //...to here } } If the refactoring were behavior preserving,... | verified fixed | 0d65b72 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-21T00:01:59Z | 2005-11-14T23:13:20Z | extension/org/eclipse/jdt/internal/corext/dom/Selection.java | |
116,342 | Bug 116342 [refactoring] [extract method] Pre/post-increment/decrement in loops allowed to be extracted | Try an extract method refactoring on the following code, indicated by the comments: import junit.framework.TestCase; public class BugTest extends TestCase{ public void testLoop(){ int x = 0; for (int i = x; i < 10; i++) //extract here... assertEquals(i,x++); //...to here } } If the refactoring were behavior preserving,... | verified fixed | 0d65b72 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-21T00:01:59Z | 2005-11-14T23:13:20Z | org.eclipse.jdt.ui/core | |
116,342 | Bug 116342 [refactoring] [extract method] Pre/post-increment/decrement in loops allowed to be extracted | Try an extract method refactoring on the following code, indicated by the comments: import junit.framework.TestCase; public class BugTest extends TestCase{ public void testLoop(){ int x = 0; for (int i = x; i < 10; i++) //extract here... assertEquals(i,x++); //...to here } } If the refactoring were behavior preserving,... | verified fixed | 0d65b72 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-21T00:01:59Z | 2005-11-14T23:13:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractMethodAnalyzer.java | |
116,342 | Bug 116342 [refactoring] [extract method] Pre/post-increment/decrement in loops allowed to be extracted | Try an extract method refactoring on the following code, indicated by the comments: import junit.framework.TestCase; public class BugTest extends TestCase{ public void testLoop(){ int x = 0; for (int i = x; i < 10; i++) //extract here... assertEquals(i,x++); //...to here } } If the refactoring were behavior preserving,... | verified fixed | 0d65b72 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-21T00:01:59Z | 2005-11-14T23:13:20Z | org.eclipse.jdt.ui/core | |
116,342 | Bug 116342 [refactoring] [extract method] Pre/post-increment/decrement in loops allowed to be extracted | Try an extract method refactoring on the following code, indicated by the comments: import junit.framework.TestCase; public class BugTest extends TestCase{ public void testLoop(){ int x = 0; for (int i = x; i < 10; i++) //extract here... assertEquals(i,x++); //...to here } } If the refactoring were behavior preserving,... | verified fixed | 0d65b72 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-21T00:01:59Z | 2005-11-14T23:13:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/flow/InputFlowAnalyzer.java | |
117,016 | Bug 117016 [refactoring] Move Inner to Top should not hardcode ".java" | null | verified fixed | 22369ae | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-21T11:17:25Z | 2005-11-18T10:33:20Z | org.eclipse.jdt.ui/core | |
117,016 | Bug 117016 [refactoring] Move Inner to Top should not hardcode ".java" | null | verified fixed | 22369ae | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-21T11:17:25Z | 2005-11-18T10:33:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveInnerToTopRefactoring.java | |
91,550 | Bug 91550 [navigation] Selecting 'return' should also mark method exits | Build 3.1m6 Identifying quickly all return statements using mark occurrences would be nice. | resolved fixed | 6749a39 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-21T14:11:55Z | 2005-04-15T15:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/MethodExitsFinder.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... |
117,295 | Bug 117295 [clean up][infrastructure] Light clean up | null | resolved fixed | 9d2b923 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:30:41Z | 2005-11-21T10:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/CleanUpAction.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... |
117,295 | Bug 117295 [clean up][infrastructure] Light clean up | null | resolved fixed | 9d2b923 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:30:41Z | 2005-11-21T10:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/CleanUpRefactoringWizard.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... |
117,295 | Bug 117295 [clean up][infrastructure] Light clean up | null | resolved fixed | 9d2b923 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:30:41Z | 2005-11-21T10:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/Java50MultiFix.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... |
117,295 | Bug 117295 [clean up][infrastructure] Light clean up | null | resolved fixed | 9d2b923 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:30:41Z | 2005-11-21T10:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/StringMultiFix.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... |
117,295 | Bug 117295 [clean up][infrastructure] Light clean up | null | resolved fixed | 9d2b923 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:30:41Z | 2005-11-21T10:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/UnusedCodeMultiFix.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... |
101,004 | Bug 101004 Make package delete hierarchical | Using Eclipse 3.1 RC3, create a Java project and then a package, say: a.b.c.d.e Try to delete this package in the Java perspective. It will only delete one segment at a time. e.g.: 1 delete => a.b.c.d 2 deletes => a.b.c 3 deletes => a.b 4 deletes => a 5 deletes => finally deleted. This is highly unusable and I don't th... | verified fixed | b152e79 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:52:31Z | 2005-06-21T05:00:00Z | org.eclipse.jdt.ui.tests.refactoring/test | |
101,004 | Bug 101004 Make package delete hierarchical | Using Eclipse 3.1 RC3, create a Java project and then a package, say: a.b.c.d.e Try to delete this package in the Java perspective. It will only delete one segment at a time. e.g.: 1 delete => a.b.c.d 2 deletes => a.b.c 3 deletes => a.b 4 deletes => a 5 deletes => finally deleted. This is highly unusable and I don't th... | verified fixed | b152e79 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:52:31Z | 2005-06-21T05:00:00Z | cases/org/eclipse/jdt/ui/tests/refactoring/ParticipantTesting.java | |
101,004 | Bug 101004 Make package delete hierarchical | Using Eclipse 3.1 RC3, create a Java project and then a package, say: a.b.c.d.e Try to delete this package in the Java perspective. It will only delete one segment at a time. e.g.: 1 delete => a.b.c.d 2 deletes => a.b.c 3 deletes => a.b 4 deletes => a 5 deletes => finally deleted. This is highly unusable and I don't th... | verified fixed | b152e79 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:52:31Z | 2005-06-21T05:00:00Z | org.eclipse.jdt.ui.tests.refactoring/test | |
101,004 | Bug 101004 Make package delete hierarchical | Using Eclipse 3.1 RC3, create a Java project and then a package, say: a.b.c.d.e Try to delete this package in the Java perspective. It will only delete one segment at a time. e.g.: 1 delete => a.b.c.d 2 deletes => a.b.c 3 deletes => a.b 4 deletes => a 5 deletes => finally deleted. This is highly unusable and I don't th... | verified fixed | b152e79 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:52:31Z | 2005-06-21T05:00:00Z | cases/org/eclipse/jdt/ui/tests/reorg/DeleteTest.java | |
101,004 | Bug 101004 Make package delete hierarchical | Using Eclipse 3.1 RC3, create a Java project and then a package, say: a.b.c.d.e Try to delete this package in the Java perspective. It will only delete one segment at a time. e.g.: 1 delete => a.b.c.d 2 deletes => a.b.c 3 deletes => a.b 4 deletes => a 5 deletes => finally deleted. This is highly unusable and I don't th... | verified fixed | b152e79 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:52:31Z | 2005-06-21T05:00:00Z | org.eclipse.jdt.ui/core | |
101,004 | Bug 101004 Make package delete hierarchical | Using Eclipse 3.1 RC3, create a Java project and then a package, say: a.b.c.d.e Try to delete this package in the Java perspective. It will only delete one segment at a time. e.g.: 1 delete => a.b.c.d 2 deletes => a.b.c 3 deletes => a.b 4 deletes => a 5 deletes => finally deleted. This is highly unusable and I don't th... | verified fixed | b152e79 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:52:31Z | 2005-06-21T05:00:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/RefactoringAvailabilityTester.java | |
101,004 | Bug 101004 Make package delete hierarchical | Using Eclipse 3.1 RC3, create a Java project and then a package, say: a.b.c.d.e Try to delete this package in the Java perspective. It will only delete one segment at a time. e.g.: 1 delete => a.b.c.d 2 deletes => a.b.c 3 deletes => a.b 4 deletes => a 5 deletes => finally deleted. This is highly unusable and I don't th... | verified fixed | b152e79 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:52:31Z | 2005-06-21T05:00:00Z | org.eclipse.jdt.ui/core | |
101,004 | Bug 101004 Make package delete hierarchical | Using Eclipse 3.1 RC3, create a Java project and then a package, say: a.b.c.d.e Try to delete this package in the Java perspective. It will only delete one segment at a time. e.g.: 1 delete => a.b.c.d 2 deletes => a.b.c 3 deletes => a.b 4 deletes => a 5 deletes => finally deleted. This is highly unusable and I don't th... | verified fixed | b152e79 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:52:31Z | 2005-06-21T05:00:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/RefactoringCoreMessages.java | |
101,004 | Bug 101004 Make package delete hierarchical | Using Eclipse 3.1 RC3, create a Java project and then a package, say: a.b.c.d.e Try to delete this package in the Java perspective. It will only delete one segment at a time. e.g.: 1 delete => a.b.c.d 2 deletes => a.b.c 3 deletes => a.b 4 deletes => a 5 deletes => finally deleted. This is highly unusable and I don't th... | verified fixed | b152e79 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:52:31Z | 2005-06-21T05:00:00Z | org.eclipse.jdt.ui/core | |
101,004 | Bug 101004 Make package delete hierarchical | Using Eclipse 3.1 RC3, create a Java project and then a package, say: a.b.c.d.e Try to delete this package in the Java perspective. It will only delete one segment at a time. e.g.: 1 delete => a.b.c.d 2 deletes => a.b.c 3 deletes => a.b 4 deletes => a 5 deletes => finally deleted. This is highly unusable and I don't th... | verified fixed | b152e79 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:52:31Z | 2005-06-21T05:00:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/IReorgQueries.java | |
101,004 | Bug 101004 Make package delete hierarchical | Using Eclipse 3.1 RC3, create a Java project and then a package, say: a.b.c.d.e Try to delete this package in the Java perspective. It will only delete one segment at a time. e.g.: 1 delete => a.b.c.d 2 deletes => a.b.c 3 deletes => a.b 4 deletes => a 5 deletes => finally deleted. This is highly unusable and I don't th... | verified fixed | b152e79 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:52:31Z | 2005-06-21T05:00:00Z | org.eclipse.jdt.ui/core | |
101,004 | Bug 101004 Make package delete hierarchical | Using Eclipse 3.1 RC3, create a Java project and then a package, say: a.b.c.d.e Try to delete this package in the Java perspective. It will only delete one segment at a time. e.g.: 1 delete => a.b.c.d 2 deletes => a.b.c 3 deletes => a.b 4 deletes => a 5 deletes => finally deleted. This is highly unusable and I don't th... | verified fixed | b152e79 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:52:31Z | 2005-06-21T05:00:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/JavaDeleteProcessor.java | |
101,004 | Bug 101004 Make package delete hierarchical | Using Eclipse 3.1 RC3, create a Java project and then a package, say: a.b.c.d.e Try to delete this package in the Java perspective. It will only delete one segment at a time. e.g.: 1 delete => a.b.c.d 2 deletes => a.b.c 3 deletes => a.b 4 deletes => a 5 deletes => finally deleted. This is highly unusable and I don't th... | verified fixed | b152e79 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:52:31Z | 2005-06-21T05:00:00Z | org.eclipse.jdt.ui/core | |
101,004 | Bug 101004 Make package delete hierarchical | Using Eclipse 3.1 RC3, create a Java project and then a package, say: a.b.c.d.e Try to delete this package in the Java perspective. It will only delete one segment at a time. e.g.: 1 delete => a.b.c.d 2 deletes => a.b.c 3 deletes => a.b 4 deletes => a 5 deletes => finally deleted. This is highly unusable and I don't th... | verified fixed | b152e79 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:52:31Z | 2005-06-21T05:00:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/util/JavaElementUtil.java | |
101,004 | Bug 101004 Make package delete hierarchical | Using Eclipse 3.1 RC3, create a Java project and then a package, say: a.b.c.d.e Try to delete this package in the Java perspective. It will only delete one segment at a time. e.g.: 1 delete => a.b.c.d 2 deletes => a.b.c 3 deletes => a.b 4 deletes => a 5 deletes => finally deleted. This is highly unusable and I don't th... | verified fixed | b152e79 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:52:31Z | 2005-06-21T05:00:00Z | org.eclipse.jdt.ui/ui | |
101,004 | Bug 101004 Make package delete hierarchical | Using Eclipse 3.1 RC3, create a Java project and then a package, say: a.b.c.d.e Try to delete this package in the Java perspective. It will only delete one segment at a time. e.g.: 1 delete => a.b.c.d 2 deletes => a.b.c 3 deletes => a.b 4 deletes => a 5 deletes => finally deleted. This is highly unusable and I don't th... | verified fixed | b152e79 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:52:31Z | 2005-06-21T05:00:00Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/RefactoringMessages.java | |
101,004 | Bug 101004 Make package delete hierarchical | Using Eclipse 3.1 RC3, create a Java project and then a package, say: a.b.c.d.e Try to delete this package in the Java perspective. It will only delete one segment at a time. e.g.: 1 delete => a.b.c.d 2 deletes => a.b.c 3 deletes => a.b 4 deletes => a 5 deletes => finally deleted. This is highly unusable and I don't th... | verified fixed | b152e79 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:52:31Z | 2005-06-21T05:00:00Z | org.eclipse.jdt.ui/ui | |
101,004 | Bug 101004 Make package delete hierarchical | Using Eclipse 3.1 RC3, create a Java project and then a package, say: a.b.c.d.e Try to delete this package in the Java perspective. It will only delete one segment at a time. e.g.: 1 delete => a.b.c.d 2 deletes => a.b.c 3 deletes => a.b 4 deletes => a 5 deletes => finally deleted. This is highly unusable and I don't th... | verified fixed | b152e79 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:52:31Z | 2005-06-21T05:00:00Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/DeleteWizard.java | |
117,055 | Bug 117055 [clean up][string fix] Wrong preview node name | Version: 3.2.0 Build id: I20051116-1332 Having: public class E { public String s1; //$NON-NLS-1$ public String s2 = ""; } Running Source -> Clean Up -> Add/Remove NON NLS tag The nodes for the edit groups on the preview page are: &Remove unneccessary '$NON-NLS$' tag &Add missing '$NON-NLS$'tag but there should be no '&... | verified fixed | 469806d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T09:54:49Z | 2005-11-18T16:06:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/StringMultiFix.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... |
114,368 | Bug 114368 [build path] New Java Project wizard: project not marked as exported on build path page | I20051031-0010 + ZRH plugins from 20051031_1611 Open the New Java Project wizard. On the second page on tab 'Order and Export', the package fragment root (source folder or project) is unchecked. After the project has been created, the 'Properties > Java Build Path' page shows it checked. It should already have been che... | verified fixed | c31369e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T10:06:11Z | 2005-10-31T14:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/dialogfields/CheckedListDialogField.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... |
111,742 | Bug 111742 [quick fix] fix for assigning raw | When writting: List<Foo> l= new ArrayList(); A quick fix may be offered to convert to: List<Foo> l= new ArrayList<Foo>(); additionaly to the quick fix "add @SuppressWarnings("unchecked")". | verified fixed | f9e2114 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T10:17:01Z | 2005-10-06T09:13:20Z | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/LocalCorrectionsQuickFixTest.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... |
111,742 | Bug 111742 [quick fix] fix for assigning raw | When writting: List<Foo> l= new ArrayList(); A quick fix may be offered to convert to: List<Foo> l= new ArrayList<Foo>(); additionaly to the quick fix "add @SuppressWarnings("unchecked")". | verified fixed | f9e2114 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T10:17:01Z | 2005-10-06T09:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/CorrectionMessages.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... |
111,742 | Bug 111742 [quick fix] fix for assigning raw | When writting: List<Foo> l= new ArrayList(); A quick fix may be offered to convert to: List<Foo> l= new ArrayList<Foo>(); additionaly to the quick fix "add @SuppressWarnings("unchecked")". | verified fixed | f9e2114 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T10:17:01Z | 2005-10-06T09:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.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... |
111,742 | Bug 111742 [quick fix] fix for assigning raw | When writting: List<Foo> l= new ArrayList(); A quick fix may be offered to convert to: List<Foo> l= new ArrayList<Foo>(); additionaly to the quick fix "add @SuppressWarnings("unchecked")". | verified fixed | f9e2114 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T10:17:01Z | 2005-10-06T09:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/QuickFixProcessor.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... |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui.tests/performance/org/eclipse/jdt/ui/tests/performance/views/CleanUpPerfTest.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... |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.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... |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui/core | |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | extension/org/eclipse/jdt/internal/corext/fix/CleanUpRefactoring.java | |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui/core | |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | extension/org/eclipse/jdt/internal/corext/fix/UnusedCodeFix.java | |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/CleanUpAction.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... |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/AbstractCleanUp.java | |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/AbstractMultiFix.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... |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/CleanUpRefactoringWizard.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... |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/CodeStyleCleanUp.java | |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/CodeStyleMultiFix.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... |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/ICleanUp.java | |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/IMultiFix.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... |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/Java50CleanUp.java | |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/Java50MultiFix.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... |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/StringCleanUp.java | |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/StringMultiFix.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... |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/UnusedCodeCleanUp.java | |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/UnusedCodeMultiFix.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... |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/FixCorrectionProposal.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... |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.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... |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | 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... |
117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | resolved fixed | a180bda | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-22T14:26:41Z | 2005-11-22T11:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ReorgCorrectionsSubProcessor.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... |
117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | verified fixed | 92ce3e9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T10:37:10Z | 2005-11-18T10:33:20Z | org.eclipse.jdt.ui/core | |
117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | verified fixed | 92ce3e9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T10:37:10Z | 2005-11-18T10:33:20Z | extension/org/eclipse/jdt/internal/corext/util/JavaModelUtil.java | |
117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | verified fixed | 92ce3e9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T10:37:10Z | 2005-11-18T10:33:20Z | org.eclipse.jdt.ui/core | |
117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | verified fixed | 92ce3e9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T10:37:10Z | 2005-11-18T10:33:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/Checks.java | |
117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | verified fixed | 92ce3e9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T10:37:10Z | 2005-11-18T10:33:20Z | org.eclipse.jdt.ui/core | |
117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | verified fixed | 92ce3e9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T10:37:10Z | 2005-11-18T10:33:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/nls/NLSRefactoring.java | |
117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | verified fixed | 92ce3e9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T10:37:10Z | 2005-11-18T10:33:20Z | org.eclipse.jdt.ui/core | |
117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | verified fixed | 92ce3e9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T10:37:10Z | 2005-11-18T10:33:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/nls/NLSSourceModifier.java | |
117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | verified fixed | 92ce3e9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T10:37:10Z | 2005-11-18T10:33:20Z | org.eclipse.jdt.ui/core | |
117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | verified fixed | 92ce3e9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T10:37:10Z | 2005-11-18T10:33:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RenameTypeProcessor.java | |
117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | verified fixed | 92ce3e9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T10:37:10Z | 2005-11-18T10:33:20Z | org.eclipse.jdt.ui/core | |
117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | verified fixed | 92ce3e9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T10:37:10Z | 2005-11-18T10:33:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/CreateCopyOfCompilationUnitChange.java | |
117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | verified fixed | 92ce3e9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T10:37:10Z | 2005-11-18T10:33:20Z | org.eclipse.jdt.ui/core | |
117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | verified fixed | 92ce3e9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T10:37:10Z | 2005-11-18T10:33:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/JavaDeleteProcessor.java | |
117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | verified fixed | 92ce3e9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T10:37:10Z | 2005-11-18T10:33:20Z | org.eclipse.jdt.ui/core | |
117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | verified fixed | 92ce3e9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T10:37:10Z | 2005-11-18T10:33:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/MonitoringNewNameQueries.java | |
117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | verified fixed | 92ce3e9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T10:37:10Z | 2005-11-18T10:33:20Z | org.eclipse.jdt.ui/core | |
117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | verified fixed | 92ce3e9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T10:37:10Z | 2005-11-18T10:33:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveInnerToTopRefactoring.java | |
117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | verified fixed | 92ce3e9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T10:37:10Z | 2005-11-18T10:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/UnresolvedElementsSubProcessor.java | /*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, an... |
117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | verified fixed | 92ce3e9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T10:37:10Z | 2005-11-18T10:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/NewTypeWizardPage.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,764 | Bug 97764 [refactoring] [rename] Exception attempting to rename linked binary project resources --> provide details to user | I was attempting to rename a file in a binary project and the operation fails with details. A big scary stack trace is dumped to the log with a very nice description of the problem. I would propose to present the details to the user so that the (dumb) user can remember that the plugin is linked :-) Caused by: org.eclip... | resolved fixed | 168ce33 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T12:12:50Z | 2005-05-31T22:53:20Z | org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/UIPerformChangeOperation.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... |
117,328 | Bug 117328 Refactor/rename for non-java folder causes Java Model Exception | null | verified fixed | e0a9252 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T12:15:51Z | 2005-11-21T16:20:00Z | org.eclipse.jdt.ui/core | |
117,328 | Bug 117328 Refactor/rename for non-java folder causes Java Model Exception | null | verified fixed | e0a9252 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T12:15:51Z | 2005-11-21T16:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RenameResourceProcessor.java | |
117,706 | Bug 117706 Replace With > Latest from HEAD gives NPE | I20051123-1300 1. change a file which is shared (CVS team provider) 2. close the editor 3. in the Package Explorer: Replace With > Latest from HEAD ==> NPE (see below) This is caused by the fact that the JavaElementResourceMapper uses "return JavaRefactoringModelProvider.JAVA_REFACTORING_MODEL_PROVIDER_ID;" as model ID... | verified fixed | d10f403 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T12:25:10Z | 2005-11-23T12:46:40Z | org.eclipse.jdt.ui/core | |
117,706 | Bug 117706 Replace With > Latest from HEAD gives NPE | I20051123-1300 1. change a file which is shared (CVS team provider) 2. close the editor 3. in the Package Explorer: Replace With > Latest from HEAD ==> NPE (see below) This is caused by the fact that the JavaElementResourceMapper uses "return JavaRefactoringModelProvider.JAVA_REFACTORING_MODEL_PROVIDER_ID;" as model ID... | verified fixed | d10f403 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T12:25:10Z | 2005-11-23T12:46:40Z | extension/org/eclipse/jdt/internal/corext/util/JavaElementResourceMapping.java | |
117,696 | Bug 117696 ExtractInterfaceProcessor should not hardcode ".java" | null | verified fixed | dfb3868 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-11-23T14:04:51Z | 2005-11-23T10:00:00Z | 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.