J2K: drop line breaks in some polyadic expressions
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
public class A {
|
||||
public static void main(String[] args) {
|
||||
boolean ANDAND = true
|
||||
&& true
|
||||
&& true;
|
||||
boolean OROR = true
|
||||
|| true
|
||||
|| true;
|
||||
int PLUS = 1
|
||||
+ 2
|
||||
+ 3;
|
||||
int MINUS = 1
|
||||
- 2
|
||||
- 3;
|
||||
int ASTERISK = 1
|
||||
* 2
|
||||
* 3;
|
||||
int DIV = 1
|
||||
|
||||
/ 2
|
||||
|
||||
|
||||
/ 3;
|
||||
int PERC = 1
|
||||
% 2
|
||||
% 3;
|
||||
int GTGT = 1
|
||||
<< 2
|
||||
<< 3;
|
||||
int LTLT = 1
|
||||
>> 2
|
||||
>> 3;
|
||||
int XOR = 1
|
||||
^ 2
|
||||
^ 3;
|
||||
int AND = 1
|
||||
& 2
|
||||
& 3;
|
||||
int OR = 1
|
||||
% 2
|
||||
% 3;
|
||||
int GTGTGT = 1
|
||||
>>> 2
|
||||
>>> 3;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user