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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
25,501 | Bug 25501 inline method: syntax errors after | public class A { void g(){ int i= y(); } int y(){ if (true) return 4; else return 3; } } inline the call to y() - you get syntax errors | resolved fixed | 40e2847 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T14:31:05Z | 2002-10-29T16:46:40Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/InlineMethodRefactoring.java | |
25,501 | Bug 25501 inline method: syntax errors after | public class A { void g(){ int i= y(); } int y(){ if (true) return 4; else return 3; } } inline the call to y() - you get syntax errors | resolved fixed | 40e2847 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T14:31:05Z | 2002-10-29T16:46:40Z | org.eclipse.jdt.ui/core | |
25,501 | Bug 25501 inline method: syntax errors after | public class A { void g(){ int i= y(); } int y(){ if (true) return 4; else return 3; } } inline the call to y() - you get syntax errors | resolved fixed | 40e2847 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T14:31:05Z | 2002-10-29T16:46:40Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/InvocationAnalyzer.java | |
25,501 | Bug 25501 inline method: syntax errors after | public class A { void g(){ int i= y(); } int y(){ if (true) return 4; else return 3; } } inline the call to y() - you get syntax errors | resolved fixed | 40e2847 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T14:31:05Z | 2002-10-29T16:46:40Z | org.eclipse.jdt.ui/core | |
25,501 | Bug 25501 inline method: syntax errors after | public class A { void g(){ int i= y(); } int y(){ if (true) return 4; else return 3; } } inline the call to y() - you get syntax errors | resolved fixed | 40e2847 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T14:31:05Z | 2002-10-29T16:46:40Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/SourceProvider.java | |
25,501 | Bug 25501 inline method: syntax errors after | public class A { void g(){ int i= y(); } int y(){ if (true) return 4; else return 3; } } inline the call to y() - you get syntax errors | resolved fixed | 40e2847 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T14:31:05Z | 2002-10-29T16:46:40Z | org.eclipse.jdt.ui/core | |
25,501 | Bug 25501 inline method: syntax errors after | public class A { void g(){ int i= y(); } int y(){ if (true) return 4; else return 3; } } inline the call to y() - you get syntax errors | resolved fixed | 40e2847 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T14:31:05Z | 2002-10-29T16:46:40Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/TargetProvider.java | |
25,501 | Bug 25501 inline method: syntax errors after | public class A { void g(){ int i= y(); } int y(){ if (true) return 4; else return 3; } } inline the call to y() - you get syntax errors | resolved fixed | 40e2847 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T14:31:05Z | 2002-10-29T16:46:40Z | org.eclipse.jdt.ui/core | |
25,501 | Bug 25501 inline method: syntax errors after | public class A { void g(){ int i= y(); } int y(){ if (true) return 4; else return 3; } } inline the call to y() - you get syntax errors | resolved fixed | 40e2847 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T14:31:05Z | 2002-10-29T16:46:40Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveInnerToTopRefactoring.java | |
26,096 | Bug 26096 inline method: incorrectly inling method that refers to 'this' | class A{ void m(C c){ c.m(this); } } class C{ void m(A a){ //method } } class Client{ void f(){ A a= null; C c= null; a.m(c); } } inlining A.m results in (in Client.f()): c.m(this); which does not compile | resolved fixed | 58fd42e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T15:20:31Z | 2002-11-13T15:06:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/receiver_in/TestThisExpression.java | |
26,096 | Bug 26096 inline method: incorrectly inling method that refers to 'this' | class A{ void m(C c){ c.m(this); } } class C{ void m(A a){ //method } } class Client{ void f(){ A a= null; C c= null; a.m(c); } } inlining A.m results in (in Client.f()): c.m(this); which does not compile | resolved fixed | 58fd42e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T15:20:31Z | 2002-11-13T15:06:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/receiver_out/TestThisExpression.java | |
26,096 | Bug 26096 inline method: incorrectly inling method that refers to 'this' | class A{ void m(C c){ c.m(this); } } class C{ void m(A a){ //method } } class Client{ void f(){ A a= null; C c= null; a.m(c); } } inlining A.m results in (in Client.f()): c.m(this); which does not compile | resolved fixed | 58fd42e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T15:20:31Z | 2002-11-13T15:06:40Z | org.eclipse.jdt.ui.tests.refactoring/test | |
26,096 | Bug 26096 inline method: incorrectly inling method that refers to 'this' | class A{ void m(C c){ c.m(this); } } class C{ void m(A a){ //method } } class Client{ void f(){ A a= null; C c= null; a.m(c); } } inlining A.m results in (in Client.f()): c.m(this); which does not compile | resolved fixed | 58fd42e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T15:20:31Z | 2002-11-13T15:06:40Z | cases/org/eclipse/jdt/ui/tests/refactoring/InlineMethodTests.java | |
26,096 | Bug 26096 inline method: incorrectly inling method that refers to 'this' | class A{ void m(C c){ c.m(this); } } class C{ void m(A a){ //method } } class Client{ void f(){ A a= null; C c= null; a.m(c); } } inlining A.m results in (in Client.f()): c.m(this); which does not compile | resolved fixed | 58fd42e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T15:20:31Z | 2002-11-13T15:06:40Z | org.eclipse.jdt.ui/core | |
26,096 | Bug 26096 inline method: incorrectly inling method that refers to 'this' | class A{ void m(C c){ c.m(this); } } class C{ void m(A a){ //method } } class Client{ void f(){ A a= null; C c= null; a.m(c); } } inlining A.m results in (in Client.f()): c.m(this); which does not compile | resolved fixed | 58fd42e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T15:20:31Z | 2002-11-13T15:06:40Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/SourceAnalyzer.java | |
30,706 | Bug 30706 Problem with linked folders, filters and refactoring. | I am trying to use the refactoring support in an environment where the project source tree is accessed via links and some parts of the raw tree are filtered out. Specifically I am trying to rename a class and when the refactoring dialog comes up I select all the options which forces a preview. When I select the "previe... | resolved fixed | a041704 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T18:26:26Z | 2003-01-31T13:33:20Z | org.eclipse.jdt.ui/core | |
30,706 | Bug 30706 Problem with linked folders, filters and refactoring. | I am trying to use the refactoring support in an environment where the project source tree is accessed via links and some parts of the raw tree are filtered out. Specifically I am trying to rename a class and when the refactoring dialog comes up I select all the options which forces a preview. When I select the "previe... | resolved fixed | a041704 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T18:26:26Z | 2003-01-31T13:33:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/TextMatchFinder.java | |
24,914 | Bug 24914 inline method - breaks code when inlining into overridden methods [refactoring] | I-20021016 linux-gtk: public class Boo { private static class A { void foo() { } } private static class B extends A { void foo() { super.foo(); } } } Issue 1: 1. select foo in "super.foo" 2. inline method 3. get a dialog saying "No method invocation or declaration selected." Issue 2: 1. select foo declration in class A... | resolved fixed | 58b020e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T19:02:39Z | 2002-10-17T10:20:00Z | org.eclipse.jdt.ui/core | |
24,914 | Bug 24914 inline method - breaks code when inlining into overridden methods [refactoring] | I-20021016 linux-gtk: public class Boo { private static class A { void foo() { } } private static class B extends A { void foo() { super.foo(); } } } Issue 1: 1. select foo in "super.foo" 2. inline method 3. get a dialog saying "No method invocation or declaration selected." Issue 2: 1. select foo declration in class A... | resolved fixed | 58b020e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T19:02:39Z | 2002-10-17T10:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/CallInliner.java | |
24,914 | Bug 24914 inline method - breaks code when inlining into overridden methods [refactoring] | I-20021016 linux-gtk: public class Boo { private static class A { void foo() { } } private static class B extends A { void foo() { super.foo(); } } } Issue 1: 1. select foo in "super.foo" 2. inline method 3. get a dialog saying "No method invocation or declaration selected." Issue 2: 1. select foo declration in class A... | resolved fixed | 58b020e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T19:02:39Z | 2002-10-17T10:20:00Z | org.eclipse.jdt.ui/core | |
24,914 | Bug 24914 inline method - breaks code when inlining into overridden methods [refactoring] | I-20021016 linux-gtk: public class Boo { private static class A { void foo() { } } private static class B extends A { void foo() { super.foo(); } } } Issue 1: 1. select foo in "super.foo" 2. inline method 3. get a dialog saying "No method invocation or declaration selected." Issue 2: 1. select foo declration in class A... | resolved fixed | 58b020e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T19:02:39Z | 2002-10-17T10:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/InlineMethodRefactoring.java | |
24,914 | Bug 24914 inline method - breaks code when inlining into overridden methods [refactoring] | I-20021016 linux-gtk: public class Boo { private static class A { void foo() { } } private static class B extends A { void foo() { super.foo(); } } } Issue 1: 1. select foo in "super.foo" 2. inline method 3. get a dialog saying "No method invocation or declaration selected." Issue 2: 1. select foo declration in class A... | resolved fixed | 58b020e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T19:02:39Z | 2002-10-17T10:20:00Z | org.eclipse.jdt.ui/core | |
24,914 | Bug 24914 inline method - breaks code when inlining into overridden methods [refactoring] | I-20021016 linux-gtk: public class Boo { private static class A { void foo() { } } private static class B extends A { void foo() { super.foo(); } } } Issue 1: 1. select foo in "super.foo" 2. inline method 3. get a dialog saying "No method invocation or declaration selected." Issue 2: 1. select foo declration in class A... | resolved fixed | 58b020e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T19:02:39Z | 2002-10-17T10:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/InvocationAnalyzer.java | |
24,914 | Bug 24914 inline method - breaks code when inlining into overridden methods [refactoring] | I-20021016 linux-gtk: public class Boo { private static class A { void foo() { } } private static class B extends A { void foo() { super.foo(); } } } Issue 1: 1. select foo in "super.foo" 2. inline method 3. get a dialog saying "No method invocation or declaration selected." Issue 2: 1. select foo declration in class A... | resolved fixed | 58b020e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T19:02:39Z | 2002-10-17T10:20:00Z | org.eclipse.jdt.ui/core | |
24,914 | Bug 24914 inline method - breaks code when inlining into overridden methods [refactoring] | I-20021016 linux-gtk: public class Boo { private static class A { void foo() { } } private static class B extends A { void foo() { super.foo(); } } } Issue 1: 1. select foo in "super.foo" 2. inline method 3. get a dialog saying "No method invocation or declaration selected." Issue 2: 1. select foo declration in class A... | resolved fixed | 58b020e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T19:02:39Z | 2002-10-17T10:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/Invocations.java | |
24,914 | Bug 24914 inline method - breaks code when inlining into overridden methods [refactoring] | I-20021016 linux-gtk: public class Boo { private static class A { void foo() { } } private static class B extends A { void foo() { super.foo(); } } } Issue 1: 1. select foo in "super.foo" 2. inline method 3. get a dialog saying "No method invocation or declaration selected." Issue 2: 1. select foo declration in class A... | resolved fixed | 58b020e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T19:02:39Z | 2002-10-17T10:20:00Z | org.eclipse.jdt.ui/core | |
24,914 | Bug 24914 inline method - breaks code when inlining into overridden methods [refactoring] | I-20021016 linux-gtk: public class Boo { private static class A { void foo() { } } private static class B extends A { void foo() { super.foo(); } } } Issue 1: 1. select foo in "super.foo" 2. inline method 3. get a dialog saying "No method invocation or declaration selected." Issue 2: 1. select foo declration in class A... | resolved fixed | 58b020e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T19:02:39Z | 2002-10-17T10:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/TargetProvider.java | |
24,914 | Bug 24914 inline method - breaks code when inlining into overridden methods [refactoring] | I-20021016 linux-gtk: public class Boo { private static class A { void foo() { } } private static class B extends A { void foo() { super.foo(); } } } Issue 1: 1. select foo in "super.foo" 2. inline method 3. get a dialog saying "No method invocation or declaration selected." Issue 2: 1. select foo declration in class A... | resolved fixed | 58b020e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T19:02:39Z | 2002-10-17T10:20:00Z | org.eclipse.jdt.ui/ui | |
24,914 | Bug 24914 inline method - breaks code when inlining into overridden methods [refactoring] | I-20021016 linux-gtk: public class Boo { private static class A { void foo() { } } private static class B extends A { void foo() { super.foo(); } } } Issue 1: 1. select foo in "super.foo" 2. inline method 3. get a dialog saying "No method invocation or declaration selected." Issue 2: 1. select foo declration in class A... | resolved fixed | 58b020e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T19:02:39Z | 2002-10-17T10:20:00Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/RefactoringWizard.java | |
24,921 | Bug 24921 inline method - breaks code when inlining methods with try catch blocks [refactoring] | I-20021016 linux-gtk: import java.io.IOException; public class Loo { void foo() throws IOException { try { throw new IOException(); } catch (IOException e) { } } void goo() { try { foo(); } catch (IOException e) { System.err.println(); } } } 1. select foo in goo 2. inline method 3. press finish 4. observe that two try ... | resolved wontfix | 3361652 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T20:09:13Z | 2002-10-17T10:20:00Z | org.eclipse.jdt.ui/core | |
24,921 | Bug 24921 inline method - breaks code when inlining methods with try catch blocks [refactoring] | I-20021016 linux-gtk: import java.io.IOException; public class Loo { void foo() throws IOException { try { throw new IOException(); } catch (IOException e) { } } void goo() { try { foo(); } catch (IOException e) { System.err.println(); } } } 1. select foo in goo 2. inline method 3. press finish 4. observe that two try ... | resolved wontfix | 3361652 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T20:09:13Z | 2002-10-17T10:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/base/RefactoringStatusCodes.java | |
24,921 | Bug 24921 inline method - breaks code when inlining methods with try catch blocks [refactoring] | I-20021016 linux-gtk: import java.io.IOException; public class Loo { void foo() throws IOException { try { throw new IOException(); } catch (IOException e) { } } void goo() { try { foo(); } catch (IOException e) { System.err.println(); } } } 1. select foo in goo 2. inline method 3. press finish 4. observe that two try ... | resolved wontfix | 3361652 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T20:09:13Z | 2002-10-17T10:20:00Z | org.eclipse.jdt.ui/core | |
24,921 | Bug 24921 inline method - breaks code when inlining methods with try catch blocks [refactoring] | I-20021016 linux-gtk: import java.io.IOException; public class Loo { void foo() throws IOException { try { throw new IOException(); } catch (IOException e) { } } void goo() { try { foo(); } catch (IOException e) { System.err.println(); } } } 1. select foo in goo 2. inline method 3. press finish 4. observe that two try ... | resolved wontfix | 3361652 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-13T20:09:13Z | 2002-10-17T10:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/InvocationAnalyzer.java | |
27,935 | Bug 27935 [Markers] MarkerHelpRegistry.hasResolutions is a performance problem | MarkerHelpRegistry.hasResolutions is used to get the enablement state for the 'quick fix' menu entry in the task view as well as to evaluate if a light bulb needs to be shown in the (Java) editor. The current implementation of MarkerHelpRegistry.hasResolutions is MarkerHelpRegistry.getResolutions().length; creating all... | resolved fixed | af2a19d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-14T14:34:53Z | 2002-12-09T13:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/CorrectionMarkerResolutionGenerator.java | package org.eclipse.jdt.internal.ui.text.correction;
import java.util.ArrayList;
import java.util.Iterator;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.resources.IResource;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.Position... |
31,649 | Bug 31649 Quick assist surround proposals need different label | 20030211 All uix fix/assist proposals have a descriptive label 'Remove xx', 'Change to..' The surround template proposals should follow this rule as well. e.g. 'Surround with {0} template' | resolved fixed | aa5534c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-14T16:06:11Z | 2003-02-12T11:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/JavaCorrectionProcessor.java | /*******************************************************************************
* Copyright (c) 2000, 2002 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanie... |
31,649 | Bug 31649 Quick assist surround proposals need different label | 20030211 All uix fix/assist proposals have a descriptive label 'Remove xx', 'Change to..' The surround template proposals should follow this rule as well. e.g. 'Surround with {0} template' | resolved fixed | aa5534c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-14T16:06:11Z | 2003-02-12T11:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/QuickTemplateProcessor.java | /**********************************************************************
Copyright (c) 2000, 2003 IBM Corp. and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www... |
31,649 | Bug 31649 Quick assist surround proposals need different label | 20030211 All uix fix/assist proposals have a descriptive label 'Remove xx', 'Change to..' The surround template proposals should follow this rule as well. e.g. 'Surround with {0} template' | resolved fixed | aa5534c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-14T16:06:11Z | 2003-02-12T11:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaCompletionProcessor.java | package org.eclipse.jdt.internal.ui.text.java;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Hashtable;
import java.util.List;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graph... |
31,649 | Bug 31649 Quick assist surround proposals need different label | 20030211 All uix fix/assist proposals have a descriptive label 'Remove xx', 'Change to..' The surround template proposals should follow this rule as well. e.g. 'Surround with {0} template' | resolved fixed | aa5534c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-14T16:06:11Z | 2003-02-12T11:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/template/TemplateProposal.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.text.template;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.jface.dialogs.... |
26,035 | Bug 26035 Local history uses wrong character encoding | i set the windows->preferences->editors->TextFileEncoding to GBK it a Chinese charactor set.and then i wrote some Chinese in the println method just as System.out.println("2UEU"); after some modify,i replace this code back from Local History.a mistake appeared.it left a mess in the println sentence.the same mistake app... | resolved fixed | 2729322 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-14T16:10:21Z | 2002-11-12T14:06:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaCompareUtilities.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.compare;
import java.io.*;
import java.net.*;
import java.util.*;
import org.eclipse.swt.graphics.Image;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.jface.resource.ImageDescriptor;
imp... |
26,035 | Bug 26035 Local history uses wrong character encoding | i set the windows->preferences->editors->TextFileEncoding to GBK it a Chinese charactor set.and then i wrote some Chinese in the println method just as System.out.println("2UEU"); after some modify,i replace this code back from Local History.a mistake appeared.it left a mess in the println sentence.the same mistake app... | resolved fixed | 2729322 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-14T16:10:21Z | 2002-11-12T14:06:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaHistoryAction.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.compare;
import java.io.*;
import org.eclipse.swt.graphics.Image;
import org.eclipse.jface.action.*;
import org.eclipse.jface.viewers.*;
import org.eclipse.ui.IActionDelegate;
import org.eclipse.ui.part.FileEdi... |
31,384 | Bug 31384 Deleting a Link deletes the content of the link result in loss of data | I20030206 - create a normal Java project - create a folder and link the folder to an existing workspace. Observe: the link is rendered as an empty package and a lot of ghost folders are rendered as well. - delete the link folder/package Observe: this also deletes folders from the source folder as well (the .metadata di... | resolved wontfix | 575595f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-14T16:32:06Z | 2003-02-07T23:20:00Z | org.eclipse.jdt.ui/core | |
31,384 | Bug 31384 Deleting a Link deletes the content of the link result in loss of data | I20030206 - create a normal Java project - create a folder and link the folder to an existing workspace. Observe: the link is rendered as an empty package and a lot of ghost folders are rendered as well. - delete the link folder/package Observe: this also deletes folders from the source folder as well (the .metadata di... | resolved wontfix | 575595f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-14T16:32:06Z | 2003-02-07T23:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/DeleteRefactoring.java | |
31,384 | Bug 31384 Deleting a Link deletes the content of the link result in loss of data | I20030206 - create a normal Java project - create a folder and link the folder to an existing workspace. Observe: the link is rendered as an empty package and a lot of ghost folders are rendered as well. - delete the link folder/package Observe: this also deletes folders from the source folder as well (the .metadata di... | resolved wontfix | 575595f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-14T16:32:06Z | 2003-02-07T23:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/reorg/DeleteResourcesAction.java | package org.eclipse.jdt.internal.ui.reorg;
import java.text.MessageFormat;
import java.util.Iterator;
import org.eclipse.core.resources.IFolder;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.MultiStatus;
import org.eclipse.jface.dialogs.Er... |
31,634 | Bug 31634 Quickfix should do a team checkout | 2.1 M5 / clearcase / eclipse-ccase plugin 0.9.3 Quickfix says no corrections available for a read only file that is under source control (i.e. not checked out). Quickfix should propose the corrections and check the file out automatically to implement them. | resolved fixed | 570190f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-14T17:12:22Z | 2003-02-12T08:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ModifierChangeCompletionProposal.java | /*******************************************************************************
* Copyright (c) 2000, 2002 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanie... |
31,634 | Bug 31634 Quickfix should do a team checkout | 2.1 M5 / clearcase / eclipse-ccase plugin 0.9.3 Quickfix says no corrections available for a read only file that is under source control (i.e. not checked out). Quickfix should propose the corrections and check the file out automatically to implement them. | resolved fixed | 570190f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-14T17:12:22Z | 2003-02-12T08:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ModifierCorrectionSubProcessor.java | package org.eclipse.jdt.internal.ui.text.correction;
import java.util.List;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.swt.graphics.Image;
import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jdt.core.JavaModelException;
import org.eclipse.jdt.core.compiler.IProblem;
import org.ec... |
31,634 | Bug 31634 Quickfix should do a team checkout | 2.1 M5 / clearcase / eclipse-ccase plugin 0.9.3 Quickfix says no corrections available for a read only file that is under source control (i.e. not checked out). Quickfix should propose the corrections and check the file out automatically to implement them. | resolved fixed | 570190f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-14T17:12:22Z | 2003-02-12T08:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/NewMethodCompletionProposal.java | /*******************************************************************************
* Copyright (c) 2000, 2002 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanie... |
31,634 | Bug 31634 Quickfix should do a team checkout | 2.1 M5 / clearcase / eclipse-ccase plugin 0.9.3 Quickfix says no corrections available for a read only file that is under source control (i.e. not checked out). Quickfix should propose the corrections and check the file out automatically to implement them. | resolved fixed | 570190f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-14T17:12:22Z | 2003-02-12T08:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/NewVariableCompletionProposal.java | /*******************************************************************************
* Copyright (c) 2000, 2002 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanie... |
31,634 | Bug 31634 Quickfix should do a team checkout | 2.1 M5 / clearcase / eclipse-ccase plugin 0.9.3 Quickfix says no corrections available for a read only file that is under source control (i.e. not checked out). Quickfix should propose the corrections and check the file out automatically to implement them. | resolved fixed | 570190f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-14T17:12:22Z | 2003-02-12T08:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/UnresolvedElementsSubProcessor.java | /*******************************************************************************
* Copyright (c) 2000, 2002 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanie... |
31,821 | Bug 31821 Quick fix for unused imports | build I20030211 It would be nice to have a quick fix for unused import warnings which simply removes the import. | resolved fixed | da63070 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-14T19:34:05Z | 2003-02-13T21:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/CUCorrectionProposal.java | /*******************************************************************************
* Copyright (c) 2000, 2002 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanie... |
31,821 | Bug 31821 Quick fix for unused imports | build I20030211 It would be nice to have a quick fix for unused import warnings which simply removes the import. | resolved fixed | da63070 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-14T19:34:05Z | 2003-02-13T21:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/CorrectionMarkerResolutionGenerator.java | package org.eclipse.jdt.internal.ui.text.correction;
import java.util.ArrayList;
import java.util.Iterator;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.resources.IResource;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.Position... |
31,821 | Bug 31821 Quick fix for unused imports | build I20030211 It would be nice to have a quick fix for unused import warnings which simply removes the import. | resolved fixed | da63070 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-14T19:34:05Z | 2003-02-13T21:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ModifierChangeCompletionProposal.java | /*******************************************************************************
* Copyright (c) 2000, 2002 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanie... |
31,821 | Bug 31821 Quick fix for unused imports | build I20030211 It would be nice to have a quick fix for unused import warnings which simply removes the import. | resolved fixed | da63070 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-14T19:34:05Z | 2003-02-13T21:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/NewMethodCompletionProposal.java | /*******************************************************************************
* Copyright (c) 2000, 2002 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanie... |
31,821 | Bug 31821 Quick fix for unused imports | build I20030211 It would be nice to have a quick fix for unused import warnings which simply removes the import. | resolved fixed | da63070 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-14T19:34:05Z | 2003-02-13T21:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/NewVariableCompletionProposal.java | /*******************************************************************************
* Copyright (c) 2000, 2002 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanie... |
31,929 | Bug 31929 Missing projects in Packages Explorer with Closed Project filter on | build i2003-02-14, win2k, J9 I have "hide closed projects" selected in my filter settings for the packages explorer view. When I exit my workspace and come back in, the Packages Explorer only displays some of my open projects. When I change the filter settings to show closed projects (hit ok) and then back to hiding th... | resolved fixed | 4ac1413 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-15T16:54:13Z | 2003-02-14T22:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/filters/ClosedProjectFilter.java | |
31,708 | Bug 31708 Make changes to RefreshAction to sync up code with workbench | null | resolved fixed | 1f960ae | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-15T17:36:41Z | 2003-02-12T20:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/RefreshAction.java | /*******************************************************************************
* Copyright (c) 2002 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanies this... |
31,473 | Bug 31473 Search Engine should not search in working copies that aren't on the build path | null | resolved fixed | 62bc18c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-15T18:21:51Z | 2003-02-10T18:00:00Z | org.eclipse.jdt.ui/core | |
31,473 | Bug 31473 Search Engine should not search in working copies that aren't on the build path | null | resolved fixed | 62bc18c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-15T18:21:51Z | 2003-02-10T18:00:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/RefactoringSearchEngine.java | |
31,473 | Bug 31473 Search Engine should not search in working copies that aren't on the build path | null | resolved fixed | 62bc18c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-15T18:21:51Z | 2003-02-10T18:00:00Z | org.eclipse.jdt.ui/core | |
31,473 | Bug 31473 Search Engine should not search in working copies that aren't on the build path | null | resolved fixed | 62bc18c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-15T18:21:51Z | 2003-02-10T18:00:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/InlineMethodRefactoring.java | |
31,473 | Bug 31473 Search Engine should not search in working copies that aren't on the build path | null | resolved fixed | 62bc18c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-15T18:21:51Z | 2003-02-10T18:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchOperation.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.search;
import org.eclipse.core.resources.IWorkspace;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jface.resource.ImageDescriptor;
import or... |
31,473 | Bug 31473 Search Engine should not search in working copies that aren't on the build path | null | resolved fixed | 62bc18c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-15T18:21:51Z | 2003-02-10T18:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/SearchUtil.java | /*
* (c) Copyright IBM Corp. 2000, 2002.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.search;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.resources.IResource;
import org.eclip... |
31,473 | Bug 31473 Search Engine should not search in working copies that aren't on the build path | null | resolved fixed | 62bc18c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-15T18:21:51Z | 2003-02-10T18:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/JavaUI.java | /*******************************************************************************
* Copyright (c) 2000, 2002 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanie... |
15,654 | Bug 15654 Can't maximize Compare with Local History window | Build M5 When you select 'Compare with Local History' the dialog box which appears is resizable but not maximizable. If I can resize the window I ought to be able to maximize it, as well. | resolved fixed | c7ca379 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-15T23:26:15Z | 2002-05-09T18:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/CompareDialog.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.compare;
import java.util.ResourceBundle;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.*;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widget... |
15,654 | Bug 15654 Can't maximize Compare with Local History window | Build M5 When you select 'Compare with Local History' the dialog box which appears is resizable but not maximizable. If I can resize the window I ought to be able to maximize it, as well. | resolved fixed | c7ca379 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-15T23:26:15Z | 2002-05-09T18:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/ResizableDialog.java | package org.eclipse.jdt.internal.ui.compare;
import java.util.ResourceBundle;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.*;
import org.eclipse.swt.graphics.*;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.dialogs.IDialogSettings;
import org.ecl... |
3,510 | Bug 3510 Move Destination shows empty folders as packages (1G46Z2X) | The move destination shows empty folders as packages whereas the packages viewer doesn't. The UI should be consistent in this matter. Steps to reproduce: 1.) create a new source folder 2.) create a package a.b.c.d in the source folder 3.) Select move from context menu. The move destination dialog shows the following pa... | verified fixed | 3324ea5 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T09:50:25Z | 2001-10-11T03:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/AddDelegateMethodsAction.java | /*******************************************************************************
* Copyright (c) 2000, 2002 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanie... |
31,865 | Bug 31865 Package Explorer: Cannot search for references in workspace | Build 20030213 1. Create class X with method foo 2. In Package Explorer, select foo 3. Right click, select References in the pop up menu Observe: The sub-menu contains only working sets. The other entries (Workspace, Hierarchy, Working Set...) have disappeared. | resolved fixed | bade459 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T10:27:28Z | 2003-02-14T13:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/ProblemTableViewer.java | /*
* (c) Copyright IBM Corp. 2000, 2002.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.viewsupport;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.eclipse.core.resources.IResource;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.... |
31,865 | Bug 31865 Package Explorer: Cannot search for references in workspace | Build 20030213 1. Create class X with method foo 2. In Package Explorer, select foo 3. Right click, select References in the pop up menu Observe: The sub-menu contains only working sets. The other entries (Workspace, Hierarchy, Working Set...) have disappeared. | resolved fixed | bade459 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T10:27:28Z | 2003-02-14T13:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/ProblemTreeViewer.java | /*
* (c) Copyright IBM Corp. 2000, 2002.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.viewsupport;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.eclipse.core.resources.IResource;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.I... |
31,905 | Bug 31905 Package Explorer serious drawing problem | I have Windows 2000, JDK 1.4.0_01, Eclipse 2.1 M5 build. For no apparent reason, the package explorer seems to lose its mind for particular sections of the heirarchy. I am able to expand and collapse the tree and interact with it just fine. But certain sections become invisible and the only remedy is to restart eclipse... | resolved fixed | 9c022ea | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T10:53:07Z | 2003-02-14T19:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/ProblemsLabelDecorator.java | /*******************************************************************************
* Copyright (c) 2000, 2002 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanie... |
31,292 | Bug 31292 sort members: 2 dialogs if file read-only [code manipulation] | 20030206 all other source actions show 1 error dialog if file is read-only this action shows 2 | resolved fixed | f5dff4e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T13:12:05Z | 2003-02-07T15:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/SortMembersAction.java | /*******************************************************************************
* Copyright (c) 2003 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this... |
31,970 | Bug 31970 Go To Resource missing files | M5 build - org.eclipse.ui module in source, rest in binary - in Package Explorer, - Navigate / Go To / Resource... - type sync (looking for synced.gif under org.eclipse.ui\icons\full\clcl16) - no match - type *.gif - it's missing all of the gifs in this folder My Package Explorer filter settings are not set to filter o... | resolved fixed | a496684 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T13:33:56Z | 2003-02-17T05:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/GotoResourceAction.java | /*******************************************************************************
* Copyright (c) 2002 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this... |
31,962 | Bug 31962 Package Explorer context menu should not allow refresh on a closed project | null | verified fixed | a072d25 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T13:42:23Z | 2003-02-16T01:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/RefreshAction.java | /*******************************************************************************
* Copyright (c) 2002 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanies this... |
31,554 | Bug 31554 QuickFix Add catch clause to surrounding try in catch clause incorrect [code manipulation] [refactoring] | With the following code in the editor: try{ someMethod(); //throws SomeException }catch(SomeException e){ someOtherMethod(); //throws SomeException } You will get a QuickFix that suggests to add a catch clause to the surrounding try. There is no surrounding try. It will add another catch(SomeException e) to the try cla... | resolved fixed | 1fa2575 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T13:44:04Z | 2003-02-11T16:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ASTResolving.java | /*******************************************************************************
* Copyright (c) 2000, 2002 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanie... |
31,554 | Bug 31554 QuickFix Add catch clause to surrounding try in catch clause incorrect [code manipulation] [refactoring] | With the following code in the editor: try{ someMethod(); //throws SomeException }catch(SomeException e){ someOtherMethod(); //throws SomeException } You will get a QuickFix that suggests to add a catch clause to the surrounding try. There is no surrounding try. It will add another catch(SomeException e) to the try cla... | resolved fixed | 1fa2575 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T13:44:04Z | 2003-02-11T16:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.java | /*******************************************************************************
* Copyright (c) 2000, 2002 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanie... |
31,897 | Bug 31897 Hierarchy View expands all treeitems on save | I have a hierarchy perspective open rooted on a package. Whenever I save a CU in the package, the entire hierarchy view Tree is expanded. | resolved fixed | ad9614d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:19:54Z | 2003-02-14T19:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/FocusOnSelectionAction.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.typehierarchy;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.ISelectionProvider;
import org.eclipse.ui.help.WorkbenchHelp;
import org.eclip... |
31,897 | Bug 31897 Hierarchy View expands all treeitems on save | I have a hierarchy perspective open rooted on a package. Whenever I save a CU in the package, the entire hierarchy view Tree is expanded. | resolved fixed | ad9614d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:19:54Z | 2003-02-14T19:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/FocusOnTypeAction.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.typehierarchy;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.jface.dialogs.ProgressMonitorDialog;
import org.e... |
31,897 | Bug 31897 Hierarchy View expands all treeitems on save | I have a hierarchy perspective open rooted on a package. Whenever I save a CU in the package, the entire hierarchy view Tree is expanded. | resolved fixed | ad9614d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:19:54Z | 2003-02-14T19:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/MethodsViewer.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.typehierarchy;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Menu;
import org.eclipse.swt.widgets.ScrollBa... |
31,897 | Bug 31897 Hierarchy View expands all treeitems on save | I have a hierarchy perspective open rooted on a package. Whenever I save a CU in the package, the entire hierarchy view Tree is expanded. | resolved fixed | ad9614d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:19:54Z | 2003-02-14T19:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/SubTypeHierarchyViewer.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.typehierarchy;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.jdt.core.IType;
import org.eclipse.jdt.core.ITypeHierarchy;
/**
* A viewer including the conten... |
31,897 | Bug 31897 Hierarchy View expands all treeitems on save | I have a hierarchy perspective open rooted on a package. Whenever I save a CU in the package, the entire hierarchy view Tree is expanded. | resolved fixed | ad9614d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:19:54Z | 2003-02-14T19:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/SuperTypeHierarchyViewer.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.typehierarchy;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.jdt.core.IType;
import org.eclipse.jdt.core.ITypeHierarchy;
/**
* A viewer including the conten... |
31,897 | Bug 31897 Hierarchy View expands all treeitems on save | I have a hierarchy perspective open rooted on a package. Whenever I save a CU in the package, the entire hierarchy view Tree is expanded. | resolved fixed | ad9614d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:19:54Z | 2003-02-14T19:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TraditionalHierarchyViewer.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.typehierarchy;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.jdt.core.Flags;
import org.eclipse.jdt.core.IType;
import org.eclipse.jdt.core.ITypeHierarchy;
i... |
31,897 | Bug 31897 Hierarchy View expands all treeitems on save | I have a hierarchy perspective open rooted on a package. Whenever I save a CU in the package, the entire hierarchy view Tree is expanded. | resolved fixed | ad9614d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:19:54Z | 2003-02-14T19:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyViewPart.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.typehierarchy;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.BusyIndicator;
import org.eclipse.swt.custom.CLabel;
import org.eclipse.swt.custom.SashF... |
31,897 | Bug 31897 Hierarchy View expands all treeitems on save | I have a hierarchy perspective open rooted on a package. Whenever I save a CU in the package, the entire hierarchy view Tree is expanded. | resolved fixed | ad9614d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:19:54Z | 2003-02-14T19:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyViewer.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.typehierarchy;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Menu;
import org.eclipse.swt.widgets.Tree;
import org.eclipse.jface.action.IMenuListener;
import... |
32,010 | Bug 32010 renaming a java project wipes out linked sourcefolders | 20030214 as a consequence of core making SHALLOW not default. arrrgh! have a fix - entered the report so that it's verified | resolved fixed | 84dde43 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:36:13Z | 2003-02-17T13:53:20Z | org.eclipse.jdt.ui/core | |
32,010 | Bug 32010 renaming a java project wipes out linked sourcefolders | 20030214 as a consequence of core making SHALLOW not default. arrrgh! have a fix - entered the report so that it's verified | resolved fixed | 84dde43 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:36:13Z | 2003-02-17T13:53:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/changes/RenameJavaProjectChange.java | |
18,944 | Bug 18944 Renaming a type causes unwanted reveal in Resource Navigator [refactoring] | Build F1. Choose "Refactor > Rename Element" while a type is selected and rename it. Resource Navigator reveals the source file for the type (workbench preference to link navigator selection to active editor is not selected). | resolved fixed | a385cad | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:44:04Z | 2002-06-03T21:33:20Z | org.eclipse.jdt.ui/core | |
18,944 | Bug 18944 Renaming a type causes unwanted reveal in Resource Navigator [refactoring] | Build F1. Choose "Refactor > Rename Element" while a type is selected and rename it. Resource Navigator reveals the source file for the type (workbench preference to link navigator selection to active editor is not selected). | resolved fixed | a385cad | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:44:04Z | 2002-06-03T21:33:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RenameMethodInInterfaceRefactoring.java | |
18,944 | Bug 18944 Renaming a type causes unwanted reveal in Resource Navigator [refactoring] | Build F1. Choose "Refactor > Rename Element" while a type is selected and rename it. Resource Navigator reveals the source file for the type (workbench preference to link navigator selection to active editor is not selected). | resolved fixed | a385cad | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:44:04Z | 2002-06-03T21:33:20Z | org.eclipse.jdt.ui/core | |
18,944 | Bug 18944 Renaming a type causes unwanted reveal in Resource Navigator [refactoring] | Build F1. Choose "Refactor > Rename Element" while a type is selected and rename it. Resource Navigator reveals the source file for the type (workbench preference to link navigator selection to active editor is not selected). | resolved fixed | a385cad | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:44:04Z | 2002-06-03T21:33:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RenameMethodRefactoring.java | |
18,944 | Bug 18944 Renaming a type causes unwanted reveal in Resource Navigator [refactoring] | Build F1. Choose "Refactor > Rename Element" while a type is selected and rename it. Resource Navigator reveals the source file for the type (workbench preference to link navigator selection to active editor is not selected). | resolved fixed | a385cad | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:44:04Z | 2002-06-03T21:33:20Z | org.eclipse.jdt.ui/core | |
18,944 | Bug 18944 Renaming a type causes unwanted reveal in Resource Navigator [refactoring] | Build F1. Choose "Refactor > Rename Element" while a type is selected and rename it. Resource Navigator reveals the source file for the type (workbench preference to link navigator selection to active editor is not selected). | resolved fixed | a385cad | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:44:04Z | 2002-06-03T21:33:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RenamePrivateMethodRefactoring.java | |
18,944 | Bug 18944 Renaming a type causes unwanted reveal in Resource Navigator [refactoring] | Build F1. Choose "Refactor > Rename Element" while a type is selected and rename it. Resource Navigator reveals the source file for the type (workbench preference to link navigator selection to active editor is not selected). | resolved fixed | a385cad | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:44:04Z | 2002-06-03T21:33:20Z | org.eclipse.jdt.ui/core | |
18,944 | Bug 18944 Renaming a type causes unwanted reveal in Resource Navigator [refactoring] | Build F1. Choose "Refactor > Rename Element" while a type is selected and rename it. Resource Navigator reveals the source file for the type (workbench preference to link navigator selection to active editor is not selected). | resolved fixed | a385cad | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:44:04Z | 2002-06-03T21:33:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RenameStaticMethodRefactoring.java | |
18,944 | Bug 18944 Renaming a type causes unwanted reveal in Resource Navigator [refactoring] | Build F1. Choose "Refactor > Rename Element" while a type is selected and rename it. Resource Navigator reveals the source file for the type (workbench preference to link navigator selection to active editor is not selected). | resolved fixed | a385cad | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:44:04Z | 2002-06-03T21:33:20Z | org.eclipse.jdt.ui/core | |
18,944 | Bug 18944 Renaming a type causes unwanted reveal in Resource Navigator [refactoring] | Build F1. Choose "Refactor > Rename Element" while a type is selected and rename it. Resource Navigator reveals the source file for the type (workbench preference to link navigator selection to active editor is not selected). | resolved fixed | a385cad | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:44:04Z | 2002-06-03T21:33:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RenameVirtualMethodRefactoring.java | |
18,944 | Bug 18944 Renaming a type causes unwanted reveal in Resource Navigator [refactoring] | Build F1. Choose "Refactor > Rename Element" while a type is selected and rename it. Resource Navigator reveals the source file for the type (workbench preference to link navigator selection to active editor is not selected). | resolved fixed | a385cad | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:44:04Z | 2002-06-03T21:33:20Z | org.eclipse.jdt.ui/ui | |
18,944 | Bug 18944 Renaming a type causes unwanted reveal in Resource Navigator [refactoring] | Build F1. Choose "Refactor > Rename Element" while a type is selected and rename it. Resource Navigator reveals the source file for the type (workbench preference to link navigator selection to active editor is not selected). | resolved fixed | a385cad | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:44:04Z | 2002-06-03T21:33:20Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/RefactoringSupport.java | |
13,921 | Bug 13921 Desire per-project property settings for Ant integration | We have an Ant implementation which stores most properties in an external .properties file. However, there is still a need to pass one or two properties to Ant using the Ant wizard and -DPROPERTY=.... Our build files are set up in such a way that property values are unlikely to change between any two build files in a g... | resolved wontfix | 1be2414 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T15:51:55Z | 2002-04-16T18:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/JavaCorrectionAssistant.java | /*******************************************************************************
* Copyright (c) 2000, 2002 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanie... |
29,909 | Bug 29909 Incorrect indentation after newline | I have my preferences set as follows: Java | Editor | Displayed tab width: 8 Java | Code formatter | Insert tabs for indentation: No Java | Code formatter | Number of spaces representing an indentation level: 4 When I have the following code: class ContainerSelection extends Selection { } and I position the caret after... | resolved fixed | 5f2a46d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T17:06:37Z | 2003-01-21T17:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaAutoIndentStrategy.java | /**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www... |
27,636 | Bug 27636 Organize Import ordering differs for different VMs | Build 20021203 OrganizeImportTest.testBaseGroups1 failed because the import ordering was different. If fixed the test by looking at the VM version and then do different asserts. However this is just a workaround to make the tests run again. The import order must not depend on the VM version. Please remove the VM versio... | verified fixed | b2a1cfb | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T17:08:27Z | 2002-12-04T11:06:40Z | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/AddImportTest.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.ui.tests.core;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jdt.core.IImportDeclaration;
import org.eclipse.... |
27,636 | Bug 27636 Organize Import ordering differs for different VMs | Build 20021203 OrganizeImportTest.testBaseGroups1 failed because the import ordering was different. If fixed the test by looking at the VM version and then do different asserts. However this is just a workaround to make the tests run again. The import order must not depend on the VM version. Please remove the VM versio... | verified fixed | b2a1cfb | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T17:08:27Z | 2002-12-04T11:06:40Z | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/ImportOrganizeTest.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.ui.tests.core;
import java.io.File;
import java.util.zip.ZipFile;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.core.runtime.Path;
import org.eclipse.jdt.core.ICompilationUnit;
import or... |
27,636 | Bug 27636 Organize Import ordering differs for different VMs | Build 20021203 OrganizeImportTest.testBaseGroups1 failed because the import ordering was different. If fixed the test by looking at the VM version and then do different asserts. However this is just a workaround to make the tests run again. The import order must not depend on the VM version. Please remove the VM versio... | verified fixed | b2a1cfb | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-02-17T17:08:27Z | 2002-12-04T11:06:40Z | org.eclipse.jdt.ui/core |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.