Implement "Safe Delete" refactoring for value parameters

This commit is contained in:
Alexey Sedunov
2013-07-31 15:03:57 +04:00
parent 6ef8f04a01
commit 2704328160
117 changed files with 2731 additions and 8 deletions
@@ -0,0 +1,5 @@
class B {
void bar(A a) {
a.foo(1, "1", "!")
}
}