mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
check valueOf signature before use synthetic javadoc (IDEA-81701)
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
<html><head> <style type="text/css"> #error { background-color: #eeeeee; margin-bottom: 10px; } p { margin: 5px 0; } </style></head><body><small><b><a href="psi_element://En"><code>En</code></a></b></small><PRE>static int <b>valueOf</b>(int i)</PRE>
|
||||
myjavadoc
|
||||
<DD><DL><DT><b>Parameters:</b><DD><code>i</code> - </DD></DL></DD><DD><DL><DT><b>Returns:</b><DD></DD></DL></DD></body></html>
|
||||
@@ -0,0 +1,12 @@
|
||||
enum En {
|
||||
;
|
||||
|
||||
/**
|
||||
* myjavadoc
|
||||
* @param i
|
||||
* @return
|
||||
*/
|
||||
static int valueOf(int i) {
|
||||
return i;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user