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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/duplicates_in/A_test958.java | package duplicates_in;
// don't extract second occurence of
// 2 since it is in a inner class
public class A_test958 {
private Object fO;
public void method0() {
/*[*/Object o2= fO;/*]*/
fO= o2;
}
public void method1() {
Object o= fO;
fO= o;
}
}
|
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/duplicates_in/A_test959.java | package duplicates_in;
// don't extract second occurence of
// 2 since it is in a inner class
public class A_test959 {
public void foo() {
int x= 10;
int y= /*[*/x/*]*/;
x= 20;
}
}
|
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/duplicates_in/A_test960.java | package duplicates_in;
// don't extract second occurence of
// 2 since it is in a inner class
public class A_test960 {
private Object fO;
public void foo() {
/*[*/fO= new Object();/*]*/
}
public void bar() {
foo();
fO= new Object();
}
}
|
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/duplicates_in/A_test961.java | package duplicates_in;
// don't extract second occurence of
// 2 since it is in a inner class
public class A_test961 {
private Object fO;
public void foo(Object o) {
/*[*/fO= o;/*]*/
}
public void bar(Object x) {
foo(x);
fO= x;
}
}
|
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/duplicates_in/A_test962.java | package duplicates_in;
// don't extract second occurence of
// 2 since it is in a inner class
public class A_test962 {
private Object object;
public A_test962() {
this.object = new Object();
System.out.println(/*[*/this.object/*]*/);
}
}
|
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/duplicates_in/A_test963.java | |
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/duplicates_in/A_test964.java | |
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/duplicates_out/A_test957.java | package duplicates_out;
// don't extract second occurence of
// 2 since it is in a inner class
public class A_test957 {
public void f() {
int i = 17;
int k = 1;
i = extracted(i);
k = extracted(k);
System.out.println(i);
System.out.println(k);
}
protected int extracted(int i) {
/*[*/i++;/*]*/
retu... |
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/duplicates_out/A_test958.java | package duplicates_out;
// don't extract second occurence of
// 2 since it is in a inner class
public class A_test958 {
private Object fO;
public void method0() {
Object o2 = extracted();
fO= o2;
}
protected Object extracted() {
/*[*/Object o2= fO;/*]*/
return o2;
}
public void method1() {
Object o ... |
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/duplicates_out/A_test959.java | package duplicates_out;
// don't extract second occurence of
// 2 since it is in a inner class
public class A_test959 {
public void foo() {
int x= 10;
int y= extracted(x);
x= 20;
}
protected int extracted(int x) {
return /*[*/x/*]*/;
}
}
|
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/duplicates_out/A_test960.java | package duplicates_out;
// don't extract second occurence of
// 2 since it is in a inner class
public class A_test960 {
private Object fO;
public void foo() {
extracted();
}
protected void extracted() {
/*[*/fO= new Object();/*]*/
}
public void bar() {
foo();
extracted();
}
}
|
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/duplicates_out/A_test961.java | package duplicates_out;
// don't extract second occurence of
// 2 since it is in a inner class
public class A_test961 {
private Object fO;
public void foo(Object o) {
extracted(o);
}
protected void extracted(Object o) {
/*[*/fO= o;/*]*/
}
public void bar(Object x) {
foo(x);
extracted(x);
}
}
|
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/duplicates_out/A_test962.java | package duplicates_out;
// don't extract second occurence of
// 2 since it is in a inner class
public class A_test962 {
private Object object;
public A_test962() {
this.object = new Object();
System.out.println(extracted());
}
protected Object extracted() {
return /*[*/this.object/*]*/;
}
}
|
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/duplicates_out/A_test963.java | |
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/duplicates_out/A_test964.java | |
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | org.eclipse.jdt.ui.tests.refactoring/test | |
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | cases/org/eclipse/jdt/ui/tests/refactoring/ExtractMethodTests.java | |
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | org.eclipse.jdt.ui/core | |
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractMethodRefactoring.java | |
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | org.eclipse.jdt.ui/core | |
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/InlineMethodRefactoring.java | |
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | org.eclipse.jdt.ui/core | |
53,851 | Bug 53851 extract method in anonymous class introduces error [refactoring] | Test case: public class Bug { void test () { new Object () { public void yes () { System.out.println ("hello world"); } }; System.out.println ("hello world"); } } Three (possibly related) problems: 1. Select the first print statement (whole line). Refactor:Extract Method..., enter some name and press OK, leaving "repla... | resolved fixed | 974ed09 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:06:14Z | 2004-03-05T15:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/SnippetFinder.java | |
58,509 | Bug 58509 [spell checking] ConcurrentModif.Exception in spelling plugin | 20040407 Got this printed in the console (not .log!) java.util.ConcurrentModificationException at java.lang.Throwable.<init>(Throwable.java) at java.util.HashMap$HashIterator.nextEntry(HashMap.java) at java.util.HashMap$KeyIterator.next(HashMap.java) at org.eclipse.jdt.internal.ui.text.spelling.engine.DefaultSpellCheck... | resolved fixed | d818204 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:09:14Z | 2004-04-14T16:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/spelling/engine/DefaultSpellChecker.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
58,509 | Bug 58509 [spell checking] ConcurrentModif.Exception in spelling plugin | 20040407 Got this printed in the console (not .log!) java.util.ConcurrentModificationException at java.lang.Throwable.<init>(Throwable.java) at java.util.HashMap$HashIterator.nextEntry(HashMap.java) at java.util.HashMap$KeyIterator.next(HashMap.java) at org.eclipse.jdt.internal.ui.text.spelling.engine.DefaultSpellCheck... | resolved fixed | d818204 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T14:09:14Z | 2004-04-14T16:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/spelling/engine/ISpellChecker.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
38,464 | Bug 38464 inline method: compile error after | 20030604 int i(Object s, int k){ return k == 3? s.hashCode():3; } void f(int p){ int u= i(null, p); } inline i you get int u= p == 3? null.hashCode():3; which does not compile | resolved fixed | 1f88a99 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T15:21:21Z | 2003-06-05T10:46:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/expression_in/TestConditionalExpression.java | |
38,464 | Bug 38464 inline method: compile error after | 20030604 int i(Object s, int k){ return k == 3? s.hashCode():3; } void f(int p){ int u= i(null, p); } inline i you get int u= p == 3? null.hashCode():3; which does not compile | resolved fixed | 1f88a99 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T15:21:21Z | 2003-06-05T10:46:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/expression_out/TestConditionalExpression.java | |
38,464 | Bug 38464 inline method: compile error after | 20030604 int i(Object s, int k){ return k == 3? s.hashCode():3; } void f(int p){ int u= i(null, p); } inline i you get int u= p == 3? null.hashCode():3; which does not compile | resolved fixed | 1f88a99 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T15:21:21Z | 2003-06-05T10:46:40Z | org.eclipse.jdt.ui.tests.refactoring/test | |
38,464 | Bug 38464 inline method: compile error after | 20030604 int i(Object s, int k){ return k == 3? s.hashCode():3; } void f(int p){ int u= i(null, p); } inline i you get int u= p == 3? null.hashCode():3; which does not compile | resolved fixed | 1f88a99 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T15:21:21Z | 2003-06-05T10:46:40Z | cases/org/eclipse/jdt/ui/tests/refactoring/InlineMethodTests.java | |
38,464 | Bug 38464 inline method: compile error after | 20030604 int i(Object s, int k){ return k == 3? s.hashCode():3; } void f(int p){ int u= i(null, p); } inline i you get int u= p == 3? null.hashCode():3; which does not compile | resolved fixed | 1f88a99 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T15:21:21Z | 2003-06-05T10:46:40Z | org.eclipse.jdt.ui/core | |
38,464 | Bug 38464 inline method: compile error after | 20030604 int i(Object s, int k){ return k == 3? s.hashCode():3; } void f(int p){ int u= i(null, p); } inline i you get int u= p == 3? null.hashCode():3; which does not compile | resolved fixed | 1f88a99 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T15:21:21Z | 2003-06-05T10:46:40Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/CallInliner.java | |
38,464 | Bug 38464 inline method: compile error after | 20030604 int i(Object s, int k){ return k == 3? s.hashCode():3; } void f(int p){ int u= i(null, p); } inline i you get int u= p == 3? null.hashCode():3; which does not compile | resolved fixed | 1f88a99 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T15:21:21Z | 2003-06-05T10:46:40Z | org.eclipse.jdt.ui/core | |
38,464 | Bug 38464 inline method: compile error after | 20030604 int i(Object s, int k){ return k == 3? s.hashCode():3; } void f(int p){ int u= i(null, p); } inline i you get int u= p == 3? null.hashCode():3; which does not compile | resolved fixed | 1f88a99 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T15:21:21Z | 2003-06-05T10:46:40Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/SourceProvider.java | |
57,706 | Bug 57706 [navigation] expecting an override indicator for overrides in anonymous classes | Currently no override indicator is shown when I override/implement a method in an anonymous class. Given that we show override indicators for normal overrides it is confusing to not see the override indicator in this case. | resolved fixed | 4e390aa | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T15:27:14Z | 2004-04-07T09:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/OverrideIndicatorManager.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
46,942 | Bug 46942 Change method signature: Edit dialog: Flaws in input validation [refactoring] | 20031119 In the 'Refactoring > Change Method Signature' dialog, press edit. 1. Change the parameter name to an existing parameter name. Dialog does not complain. You will get the conflict message after pressing 'ok' 2. Clear the return type field. The error message is '' is not a valid return type. Should be like: 'The... | resolved fixed | 1f82fa5 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T19:12:26Z | 2003-11-19T11:06:40Z | org.eclipse.jdt.ui/core | |
46,942 | Bug 46942 Change method signature: Edit dialog: Flaws in input validation [refactoring] | 20031119 In the 'Refactoring > Change Method Signature' dialog, press edit. 1. Change the parameter name to an existing parameter name. Dialog does not complain. You will get the conflict message after pressing 'ok' 2. Clear the return type field. The error message is '' is not a valid return type. Should be like: 'The... | resolved fixed | 1f82fa5 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T19:12:26Z | 2003-11-19T11:06:40Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ChangeSignatureRefactoring.java | |
44,283 | Bug 44283 pull up doesn't detect duplicate (overriden) methods [refactoring] | ---------------------------- public class A { public void stop() { } } class B extends A { public void stop() //<-- pull up this method { System.out.println("pulled up!"); } } -------------------------------------- if you pull up B.stop() you get two stop methods in A | resolved fixed | 58f4499 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T19:37:21Z | 2003-10-07T09:46:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/PullUp/testFail29/in/A.java | |
44,283 | Bug 44283 pull up doesn't detect duplicate (overriden) methods [refactoring] | ---------------------------- public class A { public void stop() { } } class B extends A { public void stop() //<-- pull up this method { System.out.println("pulled up!"); } } -------------------------------------- if you pull up B.stop() you get two stop methods in A | resolved fixed | 58f4499 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T19:37:21Z | 2003-10-07T09:46:40Z | org.eclipse.jdt.ui.tests.refactoring/test | |
44,283 | Bug 44283 pull up doesn't detect duplicate (overriden) methods [refactoring] | ---------------------------- public class A { public void stop() { } } class B extends A { public void stop() //<-- pull up this method { System.out.println("pulled up!"); } } -------------------------------------- if you pull up B.stop() you get two stop methods in A | resolved fixed | 58f4499 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T19:37:21Z | 2003-10-07T09:46:40Z | cases/org/eclipse/jdt/ui/tests/refactoring/PullUpTests.java | |
44,283 | Bug 44283 pull up doesn't detect duplicate (overriden) methods [refactoring] | ---------------------------- public class A { public void stop() { } } class B extends A { public void stop() //<-- pull up this method { System.out.println("pulled up!"); } } -------------------------------------- if you pull up B.stop() you get two stop methods in A | resolved fixed | 58f4499 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T19:37:21Z | 2003-10-07T09:46:40Z | org.eclipse.jdt.ui/core | |
44,283 | Bug 44283 pull up doesn't detect duplicate (overriden) methods [refactoring] | ---------------------------- public class A { public void stop() { } } class B extends A { public void stop() //<-- pull up this method { System.out.println("pulled up!"); } } -------------------------------------- if you pull up B.stop() you get two stop methods in A | resolved fixed | 58f4499 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T19:37:21Z | 2003-10-07T09:46:40Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MemberCheckUtil.java | |
44,283 | Bug 44283 pull up doesn't detect duplicate (overriden) methods [refactoring] | ---------------------------- public class A { public void stop() { } } class B extends A { public void stop() //<-- pull up this method { System.out.println("pulled up!"); } } -------------------------------------- if you pull up B.stop() you get two stop methods in A | resolved fixed | 58f4499 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T19:37:21Z | 2003-10-07T09:46:40Z | org.eclipse.jdt.ui/core | |
44,283 | Bug 44283 pull up doesn't detect duplicate (overriden) methods [refactoring] | ---------------------------- public class A { public void stop() { } } class B extends A { public void stop() //<-- pull up this method { System.out.println("pulled up!"); } } -------------------------------------- if you pull up B.stop() you get two stop methods in A | resolved fixed | 58f4499 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-14T19:37:21Z | 2003-10-07T09:46:40Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/PullUpRefactoring.java | |
61,841 | Bug 61841 SWTError: Cannot set data in clipboard | I200405111600 I've seen this before so it's not new in this build. I selected 3 or 4 lines and pressed Control-X (cut) and got a dialog that said "A SWT error has occurred. You are recommended to exit the workbench". The same thing happens if I press Control-C (copy). The text does get into the clipboard but is sometim... | resolved fixed | d0d3fbb | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-15T21:55:04Z | 2004-05-12T02:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ClipboardOperationAction.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, an... |
53,629 | Bug 53629 ChangeMethodSignature: content assist with focus doesn't work | M7++ - ChangeMethodSignature - Edit a parameter type - content assist - Tab -> cell editor disappears, proposals are NOT inserted. The problem is the TextCellEditor: When content assist proposal popup gets focus (Tab or mouseclick), the Text loses focus and the TextCellEditor is deactivated. Subclass of TextCellEditor ... | resolved wontfix | c9204ea | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-16T12:29:49Z | 2004-03-03T16:06:40Z | org.eclipse.jdt.ui/ui | |
53,629 | Bug 53629 ChangeMethodSignature: content assist with focus doesn't work | M7++ - ChangeMethodSignature - Edit a parameter type - content assist - Tab -> cell editor disappears, proposals are NOT inserted. The problem is the TextCellEditor: When content assist proposal popup gets focus (Tab or mouseclick), the Text loses focus and the TextCellEditor is deactivated. Subclass of TextCellEditor ... | resolved wontfix | c9204ea | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-16T12:29:49Z | 2004-03-03T16:06:40Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/ChangeParametersControl.java | |
54,658 | Bug 54658 Bug in Code Formatter > Line Wrapping | Code Formatter > Line Wrapping: The preview is not shown correctly from the beginning. The "Set line width for preview window" number has to be reset to another OR even THE SAME value to correct the display. | verified fixed | 112f7d9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-16T15:47:50Z | 2004-03-12T16:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/LineWrappingTabPage.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, an... |
55,661 | Bug 55661 Cannot resize window "Generate Javadoc" [javadoc] | It would be very helpful if (more) windows could be resized, like the Javadoc-dialog. It's so small that you can barely read the package-names on the second view, and you have to read the tooltips to be able to determine which package to select. As package-names tend to get rather long, I think many users will run into... | resolved fixed | edcbcc6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-16T15:56:35Z | 2004-03-23T13:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/GenerateJavadocAction.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
55,661 | Bug 55661 Cannot resize window "Generate Javadoc" [javadoc] | It would be very helpful if (more) windows could be resized, like the Javadoc-dialog. It's so small that you can barely read the package-names on the second view, and you have to read the tooltips to be able to determine which package to select. As package-names tend to get rather long, I think many users will run into... | resolved fixed | edcbcc6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-16T15:56:35Z | 2004-03-23T13:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javadocexport/CreateJavadocActionDelegate.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
55,661 | Bug 55661 Cannot resize window "Generate Javadoc" [javadoc] | It would be very helpful if (more) windows could be resized, like the Javadoc-dialog. It's so small that you can barely read the package-names on the second view, and you have to read the tooltips to be able to determine which package to select. As package-names tend to get rather long, I think many users will run into... | resolved fixed | edcbcc6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-16T15:56:35Z | 2004-03-23T13:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javadocexport/JavadocWizard.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
62,386 | Bug 62386 can't turn off Filter imports | Version: 3.0.0 Build id: 200405140800 Linux Gtk+ Turned on Filter Imports in the search view, now I can't turn it off. Option to turn off Filter Imports is unavailable. | resolved fixed | 39e0a7b | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-17T08:24:29Z | 2004-05-14T21:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchResultPage.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
62,386 | Bug 62386 can't turn off Filter imports | Version: 3.0.0 Build id: 200405140800 Linux Gtk+ Turned on Filter Imports in the search view, now I can't turn it off. Option to turn off Filter Imports is unavailable. | resolved fixed | 39e0a7b | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-17T08:24:29Z | 2004-05-14T21:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/MatchFilter.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, an... |
62,398 | Bug 62398 Deadlock while editing Java File | Build id: 200405130010 While editing a java file the UI became unresponsive. I had just removed some projects then started typing into a java editor that was already open. As soon as i started typing the UI locked up. I don't have a reproducible test case, but luckily i was running with a console and got a thread dump. | resolved fixed | af7b8d3 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-17T08:34:13Z | 2004-05-15T08:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/OverrideIndicatorManager.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
62,425 | Bug 62425 Externalizing Strings dump (Internal Error) [nls] [refactoring] | I Build id: 200405111200 Externalizing Strings fails on a java file that I have, but it is hard to isolate the problem. Im opening the defect just for the stack dump: Internal Error: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:283) at org.eclipse.jface.w... | resolved fixed | d262001 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-17T12:34:00Z | 2004-05-16T17:53:20Z | org.eclipse.jdt.ui/core | |
62,425 | Bug 62425 Externalizing Strings dump (Internal Error) [nls] [refactoring] | I Build id: 200405111200 Externalizing Strings fails on a java file that I have, but it is hard to isolate the problem. Im opening the defect just for the stack dump: Internal Error: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:283) at org.eclipse.jface.w... | resolved fixed | d262001 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-17T12:34:00Z | 2004-05-16T17:53:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/nls/NLSPropertyFileModifier.java | |
54,459 | Bug 54459 New search view: Double click on type should open CU [search] | 20040311 in the new search results view, I happen to have to click a lot to expand the trees so I can finally double click the method element to open the editor. What I always expect is that doouble clicking the type opens the editor and I'm always irritated that it doesn't, propably because in all other views (package... | resolved fixed | fc556e8 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-17T12:34:06Z | 2004-03-11T13:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchResultPage.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
54,459 | Bug 54459 New search view: Double click on type should open CU [search] | 20040311 in the new search results view, I happen to have to click a lot to expand the trees so I can finally double click the method element to open the editor. What I always expect is that doouble clicking the type opens the editor and I'm always irritated that it doesn't, propably because in all other views (package... | resolved fixed | fc556e8 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-17T12:34:06Z | 2004-03-11T13:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/NewSearchViewActionGroup.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
52,064 | Bug 52064 Content assist in "New Class" Dialog shows interfaces | Content Assist is available for the superclass in M7. However it also lists interfaces. If an interface is selected, the generated class "extends" it instead of "implementing" it. | resolved fixed | 7c1795f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-17T14:00:54Z | 2004-02-14T20:20:00Z | org.eclipse.jdt.ui/ui | |
52,064 | Bug 52064 Content assist in "New Class" Dialog shows interfaces | Content Assist is available for the superclass in M7. However it also lists interfaces. If an interface is selected, the generated class "extends" it instead of "implementing" it. | resolved fixed | 7c1795f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-17T14:00:54Z | 2004-02-14T20:20:00Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/contentassist/CUPositionCompletionProcessor.java | |
52,064 | Bug 52064 Content assist in "New Class" Dialog shows interfaces | Content Assist is available for the superclass in M7. However it also lists interfaces. If an interface is selected, the generated class "extends" it instead of "implementing" it. | resolved fixed | 7c1795f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-17T14:00:54Z | 2004-02-14T20:20:00Z | org.eclipse.jdt.ui/ui | |
52,064 | Bug 52064 Content assist in "New Class" Dialog shows interfaces | Content Assist is available for the superclass in M7. However it also lists interfaces. If an interface is selected, the generated class "extends" it instead of "implementing" it. | resolved fixed | 7c1795f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-17T14:00:54Z | 2004-02-14T20:20:00Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/contentassist/JavaTypeCompletionProcessor.java | |
52,064 | Bug 52064 Content assist in "New Class" Dialog shows interfaces | Content Assist is available for the superclass in M7. However it also lists interfaces. If an interface is selected, the generated class "extends" it instead of "implementing" it. | resolved fixed | 7c1795f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-17T14:00:54Z | 2004-02-14T20:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/NewTypeWizardPage.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
59,832 | Bug 59832 Bindings.findMethodDefininition(binding) finds wrong definition | I20040422 0800 1) Enabled annotation roll-overs 2) Create the following type: package p1; public class A { void doit() { } } 3) Create a subclass in a different package: package p2; import p1.A; public class B extends A { void doit() { // } } I get two roll-overs in the editor next to B.doit: - "The method B.doit() doe... | resolved fixed | 4bb7340 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-17T16:07:59Z | 2004-04-23T19:53:20Z | org.eclipse.jdt.ui/core | |
59,832 | Bug 59832 Bindings.findMethodDefininition(binding) finds wrong definition | I20040422 0800 1) Enabled annotation roll-overs 2) Create the following type: package p1; public class A { void doit() { } } 3) Create a subclass in a different package: package p2; import p1.A; public class B extends A { void doit() { // } } I get two roll-overs in the editor next to B.doit: - "The method B.doit() doe... | resolved fixed | 4bb7340 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-17T16:07:59Z | 2004-04-23T19:53:20Z | extension/org/eclipse/jdt/internal/corext/dom/Bindings.java | |
59,832 | Bug 59832 Bindings.findMethodDefininition(binding) finds wrong definition | I20040422 0800 1) Enabled annotation roll-overs 2) Create the following type: package p1; public class A { void doit() { } } 3) Create a subclass in a different package: package p2; import p1.A; public class B extends A { void doit() { // } } I get two roll-overs in the editor next to B.doit: - "The method B.doit() doe... | resolved fixed | 4bb7340 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-17T16:07:59Z | 2004-04-23T19:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/OverrideIndicatorManager.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
59,832 | Bug 59832 Bindings.findMethodDefininition(binding) finds wrong definition | I20040422 0800 1) Enabled annotation roll-overs 2) Create the following type: package p1; public class A { void doit() { } } 3) Create a subclass in a different package: package p2; import p1.A; public class B extends A { void doit() { // } } I get two roll-overs in the editor next to B.doit: - "The method B.doit() doe... | resolved fixed | 4bb7340 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-17T16:07:59Z | 2004-04-23T19:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ModifierCorrectionSubProcessor.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
59,832 | Bug 59832 Bindings.findMethodDefininition(binding) finds wrong definition | I20040422 0800 1) Enabled annotation roll-overs 2) Create the following type: package p1; public class A { void doit() { } } 3) Create a subclass in a different package: package p2; import p1.A; public class B extends A { void doit() { // } } I get two roll-overs in the editor next to B.doit: - "The method B.doit() doe... | resolved fixed | 4bb7340 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-17T16:07:59Z | 2004-04-23T19:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/TypeMismatchSubProcessor.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, an... |
62,455 | Bug 62455 Method stub for "main" interferes with main method template [code manipulation] | Build 20040513 When codeassisting behind "main", the codeassist menu incorrectly offers both a main method template and a main method stub (the latter appears first and shouldn't appear at all). | verified fixed | a753c63 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-17T17:54:24Z | 2004-05-17T10:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/GetterSetterCompletionProposal.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, an... |
62,455 | Bug 62455 Method stub for "main" interferes with main method template [code manipulation] | Build 20040513 When codeassisting behind "main", the codeassist menu incorrectly offers both a main method template and a main method stub (the latter appears first and shouldn't appear at all). | verified fixed | a753c63 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-17T17:54:24Z | 2004-05-17T10:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/MethodCompletionProposal.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, an... |
62,455 | Bug 62455 Method stub for "main" interferes with main method template [code manipulation] | Build 20040513 When codeassisting behind "main", the codeassist menu incorrectly offers both a main method template and a main method stub (the latter appears first and shouldn't appear at all). | verified fixed | a753c63 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-17T17:54:24Z | 2004-05-17T10:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/ResultCollector.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
61,014 | Bug 61014 All types cache populated during start-up | When restoring a crashed workspace the AllTypeCache Updater has shown-up during the start-up sequence before an event loop is active. The suspicion is that this updating is triggered by a delta before the runnable that triggers the initial population is executed. The solution we have discussed is that the all types cac... | resolved fixed | 3341f9e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T07:32:21Z | 2004-05-05T12:26:40Z | org.eclipse.jdt.ui/core | |
61,014 | Bug 61014 All types cache populated during start-up | When restoring a crashed workspace the AllTypeCache Updater has shown-up during the start-up sequence before an event loop is active. The suspicion is that this updating is triggered by a delta before the runnable that triggers the initial population is executed. The solution we have discussed is that the all types cac... | resolved fixed | 3341f9e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T07:32:21Z | 2004-05-05T12:26:40Z | extension/org/eclipse/jdt/internal/corext/util/AllTypesCache.java | |
61,641 | Bug 61641 Introduce Parameter introduces compile errors when used on arrays | In M8, applying the Introduce Parameter refactoring on the argument passed to doSomething(...) in the following scenario: public class AClass { public void method1() { method2(); } public void method2() { doSomething(new int[] {1, 2, 3}); ... } ... } Gives: public class AClass { public void method1() { method2(new int[... | resolved fixed | 78a8cb1 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T08:05:13Z | 2004-05-10T20:13:20Z | org.eclipse.jdt.ui.tests.refactoring/resources/IntroduceParameter/simple/Formatting1.java | |
61,641 | Bug 61641 Introduce Parameter introduces compile errors when used on arrays | In M8, applying the Introduce Parameter refactoring on the argument passed to doSomething(...) in the following scenario: public class AClass { public void method1() { method2(); } public void method2() { doSomething(new int[] {1, 2, 3}); ... } ... } Gives: public class AClass { public void method1() { method2(new int[... | resolved fixed | 78a8cb1 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T08:05:13Z | 2004-05-10T20:13:20Z | org.eclipse.jdt.ui.tests.refactoring/resources/IntroduceParameter/simple/out/Formatting1.java | |
61,641 | Bug 61641 Introduce Parameter introduces compile errors when used on arrays | In M8, applying the Introduce Parameter refactoring on the argument passed to doSomething(...) in the following scenario: public class AClass { public void method1() { method2(); } public void method2() { doSomething(new int[] {1, 2, 3}); ... } ... } Gives: public class AClass { public void method1() { method2(new int[... | resolved fixed | 78a8cb1 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T08:05:13Z | 2004-05-10T20:13:20Z | org.eclipse.jdt.ui.tests.refactoring/test | |
61,641 | Bug 61641 Introduce Parameter introduces compile errors when used on arrays | In M8, applying the Introduce Parameter refactoring on the argument passed to doSomething(...) in the following scenario: public class AClass { public void method1() { method2(); } public void method2() { doSomething(new int[] {1, 2, 3}); ... } ... } Gives: public class AClass { public void method1() { method2(new int[... | resolved fixed | 78a8cb1 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T08:05:13Z | 2004-05-10T20:13:20Z | cases/org/eclipse/jdt/ui/tests/refactoring/IntroduceParameterTests.java | |
61,641 | Bug 61641 Introduce Parameter introduces compile errors when used on arrays | In M8, applying the Introduce Parameter refactoring on the argument passed to doSomething(...) in the following scenario: public class AClass { public void method1() { method2(); } public void method2() { doSomething(new int[] {1, 2, 3}); ... } ... } Gives: public class AClass { public void method1() { method2(new int[... | resolved fixed | 78a8cb1 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T08:05:13Z | 2004-05-10T20:13:20Z | org.eclipse.jdt.ui/core | |
61,641 | Bug 61641 Introduce Parameter introduces compile errors when used on arrays | In M8, applying the Introduce Parameter refactoring on the argument passed to doSomething(...) in the following scenario: public class AClass { public void method1() { method2(); } public void method2() { doSomething(new int[] {1, 2, 3}); ... } ... } Gives: public class AClass { public void method1() { method2(new int[... | resolved fixed | 78a8cb1 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T08:05:13Z | 2004-05-10T20:13:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/IntroduceParameterRefactoring.java | |
62,503 | Bug 62503 Classloader problem with older versions of JUnit [JUnit] | I have a project with a version 3.6 junit.jar on the classpath. In 3.0M8 when I run a test with an assertEquals() that fails, I get this error: java.lang.NoClassDefFoundError: junit/framework/ComparisonFailure at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.addFailure(RemoteTestRunner.java:533) at junit.frame... | resolved fixed | 73ac583 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T08:56:39Z | 2004-05-17T16:06:40Z | org.eclipse.jdt.junit.runtime/src/org/eclipse/jdt/internal/junit/runner/RemoteTestRunner.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
62,603 | Bug 62603 NPE in JavaTypeCompletionProcessor [refactoring] | I20040514 + ZRH plug-ins from 20040518 1. Have this java class: <pre> package org.eclipse.jdt.text.tests; import java.text.CharacterIterator; import junit.framework.Assert; import junit.framework.TestCase; import org.eclipse.jdt.internal.ui.text.WordNavigator; /** * @since 3.0 */ public class WordNavigationTest extends... | resolved fixed | 791085b | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T09:04:24Z | 2004-05-18T08:46:40Z | org.eclipse.jdt.ui/ui | |
62,603 | Bug 62603 NPE in JavaTypeCompletionProcessor [refactoring] | I20040514 + ZRH plug-ins from 20040518 1. Have this java class: <pre> package org.eclipse.jdt.text.tests; import java.text.CharacterIterator; import junit.framework.Assert; import junit.framework.TestCase; import org.eclipse.jdt.internal.ui.text.WordNavigator; /** * @since 3.0 */ public class WordNavigationTest extends... | resolved fixed | 791085b | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T09:04:24Z | 2004-05-18T08:46:40Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/contentassist/CUPositionCompletionProcessor.java | |
62,603 | Bug 62603 NPE in JavaTypeCompletionProcessor [refactoring] | I20040514 + ZRH plug-ins from 20040518 1. Have this java class: <pre> package org.eclipse.jdt.text.tests; import java.text.CharacterIterator; import junit.framework.Assert; import junit.framework.TestCase; import org.eclipse.jdt.internal.ui.text.WordNavigator; /** * @since 3.0 */ public class WordNavigationTest extends... | resolved fixed | 791085b | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T09:04:24Z | 2004-05-18T08:46:40Z | org.eclipse.jdt.ui/ui | |
62,603 | Bug 62603 NPE in JavaTypeCompletionProcessor [refactoring] | I20040514 + ZRH plug-ins from 20040518 1. Have this java class: <pre> package org.eclipse.jdt.text.tests; import java.text.CharacterIterator; import junit.framework.Assert; import junit.framework.TestCase; import org.eclipse.jdt.internal.ui.text.WordNavigator; /** * @since 3.0 */ public class WordNavigationTest extends... | resolved fixed | 791085b | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T09:04:24Z | 2004-05-18T08:46:40Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/contentassist/JavaTypeCompletionProcessor.java | |
62,612 | Bug 62612 NPE in EclipsePreferences.internalGet(...) | I200405171219 + ZRH smoke plugin-export 20040518_1115 After start and shutdown of the Buildmeister runtime I found the following exception. It looks like getTextPreferenceKey() in AbstractAnnotationHover#getHoverInfo() at line 83 returned null. java.lang.NullPointerException at org.eclipse.core.internal.preferences.Ecl... | resolved fixed | 5db3d51 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T09:43:26Z | 2004-05-18T08:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
62,612 | Bug 62612 NPE in EclipsePreferences.internalGet(...) | I200405171219 + ZRH smoke plugin-export 20040518_1115 After start and shutdown of the Buildmeister runtime I found the following exception. It looks like getTextPreferenceKey() in AbstractAnnotationHover#getHoverInfo() at line 83 returned null. java.lang.NullPointerException at org.eclipse.core.internal.preferences.Ecl... | resolved fixed | 5db3d51 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T09:43:26Z | 2004-05-18T08:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/AbstractAnnotationHover.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, an... |
62,591 | Bug 62591 [misc] Javadoc view keeps prompting about HTML widget | Dear Javadoc view, I was pleased the first time you warned me about the lack of an HTML widget on my platform. However, now that you've told me about it 100 times, I think it's time you and I stop talking about this problem. Thanks, Jared Linux-GTK | resolved fixed | 58f9f0a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T10:58:17Z | 2004-05-18T06:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/infoviews/JavadocView.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
61,866 | Bug 61866 ConcurrentModificationException in UndoCollector/AbstractDocument | I20040511 (4pm) I found this in the log allthough I didn't notice any problems during editing Java files. I'm not sure if jface.text is Text or UI component. Please reassign if necessary. !ENTRY org.eclipse.ui 4 4 Mai 12, 2004 10:52:27.500 !MESSAGE Unhandled event loop exception !ENTRY org.eclipse.ui 4 0 Mai 12, 2004 1... | verified fixed | 5f84213 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T13:42:25Z | 2004-05-12T08:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
62,508 | Bug 62508 [Externalize] Edit fails when key or value is null [nls] [refactoring] | N20040517 on WXP Externalize any source which can be externalized, e.g. ExternalizeWizardPage.java Select a row which has a null key and/or value. This is common when you have asked to ignore/skip these items. You will get the following: java.lang.NullPointerException at java.lang.Throwable.<init>(Throwable.java) at ja... | resolved fixed | 50390a3 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T16:00:15Z | 2004-05-17T18:53:20Z | org.eclipse.jdt.ui/ui | |
62,508 | Bug 62508 [Externalize] Edit fails when key or value is null [nls] [refactoring] | N20040517 on WXP Externalize any source which can be externalized, e.g. ExternalizeWizardPage.java Select a row which has a null key and/or value. This is common when you have asked to ignore/skip these items. You will get the following: java.lang.NullPointerException at java.lang.Throwable.<init>(Throwable.java) at ja... | resolved fixed | 50390a3 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T16:00:15Z | 2004-05-17T18:53:20Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/nls/ExternalizeWizardPage.java | |
62,686 | Bug 62686 Missing classes in hierarchy [type hierarchy] | I200405180816 Open type hierarchy on IWorkbench. The implementing class Workbench is not shown. You have to press 'Show subtype hierarchy' to see it. | verified fixed | 3444b32 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T18:25:18Z | 2004-05-18T17:06:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TraditionalHierarchyViewer.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
62,747 | Bug 62747 CCE in UnresolvedElementsSubProcessor | 20040518 java.lang.ClassCastException at org.eclipse.jdt.internal.ui.text.correction.UnresolvedElementsSubProcessor.addSimilarVariableProposals(UnresolvedElementsSubProcessor.java:296) at org.eclipse.jdt.internal.ui.text.correction.UnresolvedElementsSubProcessor.getVariableProposals(UnresolvedElementsSubProcessor.java:... | verified fixed | 12ea3ef | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T18:53:35Z | 2004-05-18T19:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/UnresolvedElementsSubProcessor.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
62,794 | Bug 62794 Stub on code assist: Should check if method name is valid Java id | 20040518 - between two method, enter 'while' press code assist - proposal is to create method 'while' created method is of course invalid -> should check if method name is not a keyword | verified fixed | 1a5349a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-18T20:36:43Z | 2004-05-18T19:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/MethodCompletionProposal.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, an... |
62,840 | Bug 62840 NPE while pasting | Build: I-20040518-2000 I copied a line from a bugzilla report using Ctrl-C I tried to paste it into my Java file (Ctrl-V) and I kept getting the following NPE: Error May 18, 2004 23:52:48.859 The command for the key you pressed failed java.lang.NullPointerException at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor$O... | verified fixed | 12bb438 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-19T07:36:55Z | 2004-05-19T04:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
62,873 | Bug 62873 [misc] Mark occurrences detects static fields as constants | I200405190010 - disable "Mark constants" - enable "Mark non-constant fields" - in TestCase change fName to be static -> fName is no longer marked | resolved fixed | 38a9feb | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-19T11:32:36Z | 2004-05-19T12:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
62,878 | Bug 62878 [misc] Mark Occurrences of exceptions/types inconsistent | I200405190010 - disable Mark Exceptions - enable Mark Types - in TestCase: - position cursor on Throwable of runBare() declaration -> type Throwable is marked - posititon cursor on Throwable of runTest() delcaration -> type Throwable is not marked This is inconsistent. | resolved fixed | 37b90cd | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-19T12:38:28Z | 2004-05-19T12:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/ExceptionOccurrencesFinder.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, an... |
62,896 | Bug 62896 [misc] Quick Outline should not show override indicators if decorator disabled | I20040519 The quick outline shows override indicators no matter whether the Override indicator decorator is enabled in the prefs or not. We should only install the decorator if the prefs says so since this is a performance saver. | resolved fixed | 9745e6f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-19T13:41:16Z | 2004-05-19T12:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaOutlineInformationControl.java | /*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation 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, an... |
62,437 | Bug 62437 Hang on 0506 build related to indexing? | My development environment "hung". I did ctrl-break and will attache stack dumps. I can't read these (easily) in detail, but looked related to JDT indexing, so thought I'd route to JDT first. The only thing "unusuall" I was doing in IDE was that I'd just copied a java source file form one plugin/package to another plug... | verified fixed | 18a4b60 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-19T13:51:11Z | 2004-05-17T05:00:00Z | org.eclipse.jdt.ui/core | |
62,437 | Bug 62437 Hang on 0506 build related to indexing? | My development environment "hung". I did ctrl-break and will attache stack dumps. I can't read these (easily) in detail, but looked related to JDT indexing, so thought I'd route to JDT first. The only thing "unusuall" I was doing in IDE was that I'd just copied a java source file form one plugin/package to another plug... | verified fixed | 18a4b60 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-19T13:51:11Z | 2004-05-17T05:00:00Z | extension/org/eclipse/jdt/internal/corext/codemanipulation/ImportRewrite.java | |
62,437 | Bug 62437 Hang on 0506 build related to indexing? | My development environment "hung". I did ctrl-break and will attache stack dumps. I can't read these (easily) in detail, but looked related to JDT indexing, so thought I'd route to JDT first. The only thing "unusuall" I was doing in IDE was that I'd just copied a java source file form one plugin/package to another plug... | verified fixed | 18a4b60 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-19T13:51:11Z | 2004-05-17T05:00:00Z | org.eclipse.jdt.ui/core | |
62,437 | Bug 62437 Hang on 0506 build related to indexing? | My development environment "hung". I did ctrl-break and will attache stack dumps. I can't read these (easily) in detail, but looked related to JDT indexing, so thought I'd route to JDT first. The only thing "unusuall" I was doing in IDE was that I'd just copied a java source file form one plugin/package to another plug... | verified fixed | 18a4b60 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-05-19T13:51:11Z | 2004-05-17T05:00:00Z | extension/org/eclipse/jdt/internal/corext/codemanipulation/ImportsStructure.java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.