cs: skip return value changes for private methods

This commit is contained in:
anna
2010-09-10 18:49:29 +04:00
parent 734b3dd55a
commit 5f27df0847
5 changed files with 71 additions and 14 deletions

View File

@@ -0,0 +1,4 @@
class Test {
<caret> void foo() {
}
}

View File

@@ -0,0 +1,4 @@
class Test {
private <caret> foo() {
}
}