Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Incomplete
-
None
-
None
-
OpenJDK Runtime Environment 14-ea+27-1339
Description
Incorrect formatting for the new feature 'record' on pressing ALT-SHIFT-F
Steps :
Type the below code on editor & Press ALT-SHIFT-F :
record Test2(long i, int j) {
public void m()
}
Actual Result :
record
Test2(long i
, int j
) {
public void m()
}
Expected Result :
record Test2(long i, int j) {
public void m()
}