
|
Available Workflow Actions
|
|
If you were logged in you would be able to see more operations.
|
|
|
|
Original Estimate:
|
Unknown
|
Remaining Estimate:
|
Unknown
|
Time Spent:
|
Unknown
|
|
How to reproduce:
------------------
Try and replace 'toString()' by 'clone()' in the code below, in Column mode
- start from this code
Foo foo = new Foo ();
Object a = foo.toString ();
Object b = foo.toString ();
Object c = foo.toString ();
- enable ColumnMode
- select the block of 'toString(), on 3 rows
- type 'c'
- type Ctrl-Space
=>
Foo foo = new Foo ();
Object a = foo.c (); <<------- PROBLEM
Object b = foo.c (); <<------- PROBLEM
Object c = foo.clone ();
|
|
Description
|
How to reproduce:
------------------
Try and replace 'toString()' by 'clone()' in the code below, in Column mode
- start from this code
Foo foo = new Foo ();
Object a = foo.toString ();
Object b = foo.toString ();
Object c = foo.toString ();
- enable ColumnMode
- select the block of 'toString(), on 3 rows
- type 'c'
- type Ctrl-Space
=>
Foo foo = new Foo ();
Object a = foo.c (); <<------- PROBLEM
Object b = foo.c (); <<------- PROBLEM
Object c = foo.clone (); |
Show » |
| There are no comments yet on this issue.
|
|