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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestLiteralReferenceRead.java | package argument_in;
public class TestLiteralReferenceRead {
public void main() {
/*[*/foo(10);/*]*/
}
public void foo(int x) {
int i= x;
bar(x);
}
public void bar(int z) {
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestLiteralReferenceWrite.java | package argument_in;
public class TestLiteralReferenceWrite {
public void main() {
/*[*/foo(10);/*]*/
}
public void foo(int x) {
x= 20;
bar(x);
}
public void bar(int z) {
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestLocalReferenceLoop.java | package argument_in;
public class TestLocalReferenceLoop {
public void main() {
int i= 10;
for (int z= 0; z < i; z++) {
/*[*/foo(i);/*]*/
}
}
public void foo(int x) {
x= x + 10;
bar(x);
}
public void bar(int z) {
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestLocalReferencePrefix.java | package argument_in;
public class TestLocalReferencePrefix {
public void main() {
int a = 0;
int b = 1;
int c = 2;
int d = 3;
a = aa((a + /*[*/bb( b, c, d)/*]*/), 0) + b;
}
private int bb(int u, int v, int w) {
return (u & v) | (~u & w);
}
private int aa(int x, int n) {
return (x << n) | (... |
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestLocalReferenceRead.java | package argument_in;
public class TestLocalReferenceRead {
public void main() {
int foo = 0;
/*[*/inlineMe(foo);/*]*/
System.out.println(foo);
}
public void inlineMe(int bar) {
bar++;
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestLocalReferenceRead2.java | package argument_in;
public class TestLocalReferenceRead2 {
public void main() {
int i= 10;
/*[*/foo(i);/*]*/
System.out.println(i);
}
public void foo(int x) {
x= x + 10;
bar(x);
}
public void bar(int z) {
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestLocalReferenceUnused.java | package argument_in;
public class TestLocalReferenceUnused {
public void main() {
int i= 10;
/*[*/foo(i);/*]*/
int x= 7;
}
public void foo(int x) {
x= x + 10;
bar(x);
}
public void bar(int z) {
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestLocalReferenceWrite.java | package argument_in;
public class TestLocalReferenceWrite {
public void main() {
int i= 10;
/*[*/foo(i);/*]*/
i= 10;
System.out.println(i);
}
public void foo(int x) {
x= x + 10;
bar(x);
}
public void bar(int z) {
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestOneRead.java | package argument_in;
public class TestOneRead {
public void main() {
/*[*/foo(value());/*]*/
}
public void foo(int x) {
int i= x;
}
public int value() {
return 10;
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestParameterNameUnused1.java | package argument_in;
public class TestParameterNameUnused1 {
public void main() {
{
int x= 20;
}
/*[*/foo(10);/*]*/
}
public void foo(int x) {
x= 20;
bar(x);
}
public void bar(int z) {
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestParameterNameUnused2.java | package argument_in;
public class TestParameterNameUnused2 {
public void main() {
for (int x= 10; x < 20; x++)
main();
/*[*/foo(10);/*]*/
}
public void foo(int x) {
x= 20;
bar(x);
}
public void bar(int z) {
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestParameterNameUnused3.java | package argument_in;
public class TestParameterNameUnused3 {
public void main() {
class T {
int x;
}
/*[*/foo(10);/*]*/
}
public void foo(int x) {
x= 20;
bar(x);
}
public void bar(int z) {
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestParameterNameUsed1.java | package argument_in;
public class TestParameterNameUsed1 {
public void main() {
int x= 20;
/*[*/foo(10);/*]*/
}
public void foo(int x) {
x= 20;
bar(x);
}
public void bar(int z) {
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestParameterNameUsed2.java | package argument_in;
public class TestParameterNameUsed2 {
public void main() {
/*[*/foo(10);/*]*/
int x= 20;
}
public void foo(int x) {
x= 20;
bar(x);
}
public void bar(int z) {
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestParameterNameUsed3.java | package argument_in;
public class TestParameterNameUsed3 {
public void main() {
/*[*/foo(10);/*]*/
{
int x= 20;
}
}
public void foo(int x) {
x= 20;
bar(x);
}
public void bar(int z) {
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestParameterNameUsed4.java | package argument_in;
public class TestParameterNameUsed4 {
public void main() {
class x {}
/*[*/foo(10);/*]*/
}
public void foo(int x) {
x= 20;
bar(x);
}
public void bar(int z) {
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestTwoReads.java | package argument_in;
public class TestTwoReads {
public void main() {
/*[*/foo(value());/*]*/
}
public void foo(int x) {
int i= x;
int y= x;
}
public int value() {
return 10;
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestVarargs.java | package argument_in;
public class TestVarargs {
public void bar(String... args) {
for(String arg: args) {
System.out.println(arg);
}
}
public void main() {
/*[*/bar("Hello", "Eclipse");/*]*/
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestVarargs2.java | package argument_in;
public class TestVarargs2 {
public void bar(int i, String... args) {
System.out.println(args[i]);
}
public void main() {
/*[*/bar(1, "Hello", "Eclipse");/*]*/
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestVarargs3.java | package argument_in;
public class TestVarargs3 {
public void bar(String... args) {
for(String arg: args) {
System.out.println(arg);
}
}
public void main() {
/*[*/bar();/*]*/
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestVarargs4.java | package argument_in;
public class TestVarargs4 {
public void bar(String... args) {
for(String arg: args) {
System.out.println(arg);
}
}
public void main() {
String[] strings= {"Hello", "Eclipse"};
/*[*/bar(strings);/*]*/
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestVarargs5.java | package argument_in;
public class TestVarargs5 {
public void bar(Object... args) {
for(Object arg: args) {
System.out.println(arg);
}
}
public void main() {
String[] strings= {"Hello", "Eclipse"};
/*[*/bar(strings);/*]*/
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestWrite.java | package argument_in;
public class TestWrite {
public void main() {
/*[*/foo(value());/*]*/
}
public void foo(int x) {
x= 10;
}
public int value() {
return 10;
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/call_in/TestParenthesis.java | package call_in;
import java.util.List;
public class TestParenthesis {
Object list;
public void main() {
Object element= /*]*/getList()/*]*/.get(0);
}
public List getList() {
return (List)list;
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/call_out/TestParenthesis.java | package call_out;
import java.util.List;
public class TestParenthesis {
Object list;
public void main() {
Object element= /*]*/((List)list).get(0);
}
public List getList() {
return (List)list;
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/cast_in/TestNoCast.java | package cast_in;
public class TestNoCast {
String fName;
String getName() {
return fName;
}
void foo(TestNoCast o) {
System.out.println(/*[*/o.getName()/*]*/);
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/enum_in/TestAnonymousEnum.java | package enum_in;
public enum TestAnonymousEnum {
A {
void foo() {
/*[*/bar()/*]*/;
}
void bar() {
System.out.println("Hello Eclipse");
}
};
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/enum_in/TestBasic.java | package enum_in;
public enum TestBasic {
A, B;
void foo() {
/*[*/bar()/*]*/;
}
void bar() {
System.out.println("Hello Eclipse");
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/expression_in/TestConditionalExpression.java | package expression_in;
public class TestConditionalExpression {
int i(Object s, int k) {
return k == 3 ? s.hashCode() : 3;
}
void f(int p) {
int u = /*[*/i(this, p)/*]*/;
}
} |
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/generic_in/TestClassInstance.java | package generic_in;
public class TestClassInstance {
void bar() {
X<String, Number> x= new X<String, Number>();
x./*[*/foo()/*]*/;
}
}
class X<T, E> {
public void foo() {
T t= null;
E e= null;
}
} |
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/generic_in/TestMethodInstance1.java | package generic_in;
public class TestMethodInstance1 {
void bar() {
/*[*/foo("Eclipse");/*]*/
}
private <T> void foo(T param) {
T t= null;
}
} |
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/generic_in/TestMethodInstance2.java | package generic_in;
public class TestMethodInstance2 {
String bar() {
return /*[*/foo()/*]*/;
}
private <T> T foo() {
T t= null;
return t;
}
} |
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/generic_in/TestSubClass1.java | package generic_in;
class SuperClass1<T, E> {
public void foo() {
T t= null;
E e= null;
}
}
public class TestSubClass1<A, B> extends SuperClass1<A, B> {
void bar() {
/*[*/foo()/*]*/;
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/generic_in/TestSubClass2.java | package generic_in;
class SuperClass2<T, E> {
public void foo() {
T t= null;
E e= null;
}
}
public class TestSubClass2<A, B> extends SuperClass2<B, A> {
void bar() {
/*[*/foo()/*]*/;
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/import_in/TestStaticImport.java | package import_in;
public class TestStaticImport {
void foo() {
Provider p= null;
p./*[*/useStaticImport()/*]*/;
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/import_in/TestStaticImport2.java | package import_in;
public class TestStaticImport2 {
public static final double PI= 3.14;
void foo() {
Provider p= null;
p./*[*/useStaticImport()/*]*/;
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/nameconflict_in/TestBlocks.java | package nameconflict_in;
public class TestBlocks {
public void main() {
if (true) {
/*[*/foo();/*]*/
}
if (true) {
int x= 1;
}
}
private void foo() {
int x= 1;
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/nameconflict_in/TestFieldInType.java | package nameconflict_in;
public class TestFieldInType {
public void main() {
/*[*/foo();/*]*/
class T {
int x;
}
}
public void foo() {
int x= 10;
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/nameconflict_in/TestLocalInType.java | package nameconflict_in;
public class TestLocalInType {
public void main() {
/*[*/foo();/*]*/
class T {
void bar() {
int x;
}
}
}
public void foo() {
int x= 10;
int bar= 20;
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/nameconflict_in/TestSameLocal.java | package nameconflict_in;
public class TestSameLocal {
public void main() {
int i= 10;
/*[*/foo();/*]*/
}
public void foo() {
int i= 20;
i++;
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/nameconflict_in/TestSameType.java | package nameconflict_in;
public class TestSameType {
public void main() {
class T {
public T() {}
}
/*[*/foo();/*]*/
}
public void foo() {
class T {
T t;
public T() {}
}
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/nameconflict_in/TestSameTypeAfter.java | package nameconflict_in;
public class TestSameTypeAfter {
public void main() {
/*[*/foo();/*]*/
class T {
public T() {}
}
}
public void foo() {
class T {
T t;
public T() {}
}
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/nameconflict_in/TestSameTypeInSibling.java | package nameconflict_in;
public class TestSameTypeInSibling {
public void main() {
class T {
public T() {}
}
int x= 10;
/*[*/foo();/*]*/
}
public void foo() {
class T {
T t;
public T() {}
}
class X {
T t;
void foo() {
int x;
T t;
}
}
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/nameconflict_in/TestSwitchStatement.java | package nameconflict_in;
public class TestSwitchStatement {
public void main() {
int i= 10;
switch(i) {
case 0:
break;
case 10:
/*[*/foo();/*]*/
break;
}
}
public void foo() {
int i= 20;
i++;
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/receiver_in/TestFieldReceiver.java | package receiver_in;
public class TestFieldReceiver {
public Object object;
public Object getObject() {
return object;
}
}
class Client2 {
void test() {
TestFieldReceiver r= new TestFieldReceiver();
Object o= /*[*/r.getObject()/*]*/;
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/simple_in/TestBasic1.java | package simple_in;
public class TestBasic1 {
public void main() {
/*[*/bar();/*]*/
}
public void bar() {
baz();
}
public void baz() {
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/simple_in/TestBasic2.java | package simple_in;
public class TestBasic2 {
public void main() {
/*[*/bar();/*]*/
}
public void bar() {
for (int i= 0; i < 10; i++) {
baz();
}
baz();
}
public void baz() {
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/simple_in/TestCatchClause.java | package simple_in;
public class TestCatchClause {
public int foo() {
int i= 0;
switch(i) {
case 10:
return /*[*/bar()/*]*/;
case 20:
return bar();
}
return 0;
}
int bar() {
return 10;
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/simple_in/TestEmptyBody.java | package simple_in;
public class TestEmptyBody {
public void main() {
/*[*/foo();/*]*/
}
public void foo() {
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/simple_in/TestInitializer.java | package simple_in;
public class TestInitializer {
static {
/*[*/foo();/*]*/
}
public static void foo() {
System.out.println("Eclipse");
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/simple_in/TestLabeledStatement.java | package simple_in;
public class TestLabeledStatement {
public static void main() {
/*[*/foo();/*]*/
}
public static void foo() {
the_label:
while(true) {
break the_label;
}
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/simple_in/TestPrimitiveArray.java | package simple_in;
public class TestPrimitiveArray {
public void main() {
/*[*/foo(null);/*]*/
}
public void foo(int[][] x) {
x= new int[10][];
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/simple_in/TestSuper.java | package simple_in;
public class TestSuper {
private static class A {
void foo() {
bar();
}
void bar() {
}
}
private static class B extends A {
void foo() {
/*[*/super.foo();/*]*/
}
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/simple_in/TestTypeArray.java | package simple_in;
public class TestTypeArray {
public void main() {
/*[*/foo(null);/*]*/
}
public void foo(TestTypeArray[][] x) {
x= new TestTypeArray[10][];
}
}
|
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/test | |
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | cases/org/eclipse/jdt/ui/tests/refactoring/AbstractSelectionTestCase.java | |
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/test | |
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | cases/org/eclipse/jdt/ui/tests/refactoring/ExtractMethodTests.java | |
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/test | |
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | cases/org/eclipse/jdt/ui/tests/refactoring/InlineMethodTests.java | |
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui.tests.refactoring/test | |
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | cases/org/eclipse/jdt/ui/tests/refactoring/SurroundWithTests.java | |
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui/core | |
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/CallInliner.java | |
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | org.eclipse.jdt.ui/core | |
40,243 | Bug 40243 inline method: loses comments [refactoring] | 20030715 inline method loses comments that are places before call sites. example: package p; public class A { private void helper1(int startLine, int startColumn, int endLine, int endColumn, boolean replaceAll, boolean makeFinal, String tempName) throws Exception{ helper1(startLine, startColumn, endLine, endColumn, rep... | verified fixed | b986fbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T11:56:15Z | 2003-07-16T18:26:40Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/util/NoCommentSourceRangeComputer.java | |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindAction.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... |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindDeclarationsAction.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... |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindDeclarationsInHierarchyAction.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... |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindDeclarationsInProjectAction.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... |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindDeclarationsInWorkingSetAction.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... |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindImplementorsAction.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... |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindImplementorsInProjectAction.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... |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindImplementorsInWorkingSetAction.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... |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindReadReferencesAction.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... |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindReadReferencesInHierarchyAction.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... |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindReadReferencesInProjectAction.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... |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindReadReferencesInWorkingSetAction.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... |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindReferencesAction.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... |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindReferencesInHierarchyAction.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... |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindReferencesInProjectAction.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... |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindReferencesInWorkingSetAction.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... |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindWriteReferencesAction.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... |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindWriteReferencesInHierarchyAction.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... |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindWriteReferencesInProjectAction.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... |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindWriteReferencesInWorkingSetAction.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... |
81,196 | Bug 81196 Can't search for References, ... to an ITypeParameter [search] | null | resolved fixed | 9d09a91 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-04T13:26:39Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/WorkingSetFindAction.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... |
81,266 | Bug 81266 [working sets] rename 'select working sets' in working set mode? | 20041215 When in the 'Show working sets' mode, you still have the action 'Show working copy...'. It opens a dialog 'Configure working sets'. Double clicking an entry select a working copy node. Wouldn't it be better to rename it to 'Configure working sets' (only when in the working copy mode) and drop the selection beh... | resolved fixed | 0d62a40 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-06T17:18:49Z | 2004-12-15T19:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/WorkingSetConfigurationDialog.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... |
81,414 | Bug 81414 unhelpful generated JUNIT run configuration name for source folder unit-test runs | If you rightclick source folders and run unit tests, a Junit run configuration is created for that run. The name of this configuration is: "test (%NR)" where %nr is an incrementing number. I suggest the following run configuration name: "junit %project-name %source- folder-name" so for the project myXml and folder: src... | resolved fixed | f52c412 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-06T20:04:22Z | 2004-12-16T15:13:20Z | org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnitLaunchShortcut.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... |
84,533 | Bug 84533 Refactoring does not do anything... | Build: I-20050202 1. Create a new Hello world plugin project. Call it 'com.example.xyz' and accept all defaults. 2. Close the manifest editor for the newly created plugin.xml to take PDE out of the equation. 3. Open the plugin.xml in a plain text editor. 4. Right-click on the 'com.example.xyz' project and choose to ren... | verified fixed | 8816399 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-07T11:22:02Z | 2005-02-07T04:20:00Z | org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/core/refactoring/Change.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... |
84,533 | Bug 84533 Refactoring does not do anything... | Build: I-20050202 1. Create a new Hello world plugin project. Call it 'com.example.xyz' and accept all defaults. 2. Close the manifest editor for the newly created plugin.xml to take PDE out of the equation. 3. Open the plugin.xml in a plain text editor. 4. Right-click on the 'com.example.xyz' project and choose to ren... | verified fixed | 8816399 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-07T11:22:02Z | 2005-02-07T04:20:00Z | org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/core/refactoring/CompositeChange.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... |
84,533 | Bug 84533 Refactoring does not do anything... | Build: I-20050202 1. Create a new Hello world plugin project. Call it 'com.example.xyz' and accept all defaults. 2. Close the manifest editor for the newly created plugin.xml to take PDE out of the equation. 3. Open the plugin.xml in a plain text editor. 4. Right-click on the 'com.example.xyz' project and choose to ren... | verified fixed | 8816399 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-07T11:22:02Z | 2005-02-07T04:20:00Z | org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/ChangeElement.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... |
84,533 | Bug 84533 Refactoring does not do anything... | Build: I-20050202 1. Create a new Hello world plugin project. Call it 'com.example.xyz' and accept all defaults. 2. Close the manifest editor for the newly created plugin.xml to take PDE out of the equation. 3. Open the plugin.xml in a plain text editor. 4. Right-click on the 'com.example.xyz' project and choose to ren... | verified fixed | 8816399 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-07T11:22:02Z | 2005-02-07T04:20:00Z | org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/ChangeElementTreeViewer.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... |
84,533 | Bug 84533 Refactoring does not do anything... | Build: I-20050202 1. Create a new Hello world plugin project. Call it 'com.example.xyz' and accept all defaults. 2. Close the manifest editor for the newly created plugin.xml to take PDE out of the equation. 3. Open the plugin.xml in a plain text editor. 4. Right-click on the 'com.example.xyz' project and choose to ren... | verified fixed | 8816399 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-07T11:22:02Z | 2005-02-07T04:20:00Z | org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/DefaultChangeElement.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... |
84,533 | Bug 84533 Refactoring does not do anything... | Build: I-20050202 1. Create a new Hello world plugin project. Call it 'com.example.xyz' and accept all defaults. 2. Close the manifest editor for the newly created plugin.xml to take PDE out of the equation. 3. Open the plugin.xml in a plain text editor. 4. Right-click on the 'com.example.xyz' project and choose to ren... | verified fixed | 8816399 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-07T11:22:02Z | 2005-02-07T04:20:00Z | org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/PseudoJavaChangeElement.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... |
84,533 | Bug 84533 Refactoring does not do anything... | Build: I-20050202 1. Create a new Hello world plugin project. Call it 'com.example.xyz' and accept all defaults. 2. Close the manifest editor for the newly created plugin.xml to take PDE out of the equation. 3. Open the plugin.xml in a plain text editor. 4. Right-click on the 'com.example.xyz' project and choose to ren... | verified fixed | 8816399 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-07T11:22:02Z | 2005-02-07T04:20:00Z | org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/TextEditChangeElement.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... |
84,556 | Bug 84556 New type wizard generates uncompilable code | HEAD: the package declaration is located after the import declarations Steps to reproduce: - Create class HashedMap which extends Map (don't use the default package) - Set options to implement methods and constructors | resolved fixed | db65076 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-07T13:03:02Z | 2005-02-07T12:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/NewTypeWizardPage.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... |
84,498 | Bug 84498 NPE attempting to rename a method parameter | N20050202-0010 Selected a method parameter Ctrl-1 > Select Rename in File java.lang.NullPointerException at org.eclipse.jdt.internal.corext.dom.Bindings.getFieldDeclaration (Bindings.java:1219) at org.eclipse.jdt.internal.corext.dom.LinkedNodeFinder$BindingFinder.getDeclarati on(LinkedNodeFinder.java:285) at org.eclips... | resolved fixed | 6a46e3f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-07T13:22:44Z | 2005-02-04T23:33:20Z | org.eclipse.jdt.ui/core | |
84,498 | Bug 84498 NPE attempting to rename a method parameter | N20050202-0010 Selected a method parameter Ctrl-1 > Select Rename in File java.lang.NullPointerException at org.eclipse.jdt.internal.corext.dom.Bindings.getFieldDeclaration (Bindings.java:1219) at org.eclipse.jdt.internal.corext.dom.LinkedNodeFinder$BindingFinder.getDeclarati on(LinkedNodeFinder.java:285) at org.eclips... | resolved fixed | 6a46e3f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-07T13:22:44Z | 2005-02-04T23:33:20Z | extension/org/eclipse/jdt/internal/corext/dom/Bindings.java | |
82,260 | Bug 82260 ResultCollector: remove dependency to internal J Core interface | I20050104-1600 Summary says it all. | resolved fixed | bff26e0 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-02-07T13:56:38Z | 2005-01-05T18:33:20Z | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/CodeCompletionTest.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... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.