You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Syntax highlighting is broken in the below code snippet:
publicstatic <MextendsMap<Integer, String>>
booleanTestGet(Supplier<M> c) {
//TODO write unit test for get//SetupMap<Integer, String> map = c.get();
returnfalse;
}
Highlighting is fixed if full method header is on the same line:
publicstatic <MextendsMap<Integer,String>> booleanTestGet(Supplier<M> c){
//TODO write unit test for get//SetupMap<Integer, String> map = c.get();
returnfalse;
}
Reproduces without extensions: Yes
The text was updated successfully, but these errors were encountered:
aeschli
changed the title
Syntax Highlighting broken by method header on more than one line
[java] Syntax Highlighting broken by method header on more than one line
Oct 25, 2017
Steps to Reproduce:
Syntax highlighting is broken in the below code snippet:
Highlighting is fixed if full method header is on the same line:
Reproduces without extensions: Yes
The text was updated successfully, but these errors were encountered: