option to ignore simple getters/setters: off by default as private fields by default do not require javadoc (IDEA-43830)

This commit is contained in:
anna
2013-04-17 18:23:14 +02:00
parent 2c34966c72
commit 2a94c547e7
4 changed files with 57 additions and 0 deletions
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<problems>
</problems>
@@ -0,0 +1,11 @@
public class Test {
private int myFoo;
public int getFoo() {
return myFoo;
}
public void setFoo(int foo) {
myFoo = foo;
}
}