check valueOf signature before use synthetic javadoc (IDEA-81701)

This commit is contained in:
anna
2012-02-23 11:50:18 +01:00
parent 2d474a043f
commit 519ccb6024
4 changed files with 26 additions and 3 deletions
@@ -0,0 +1,12 @@
enum En {
;
/**
* myjavadoc
* @param i
* @return
*/
static int valueOf(int i) {
return i;
}
}