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
public class AA {
public static void main(String[] args) {
System.out.println(0L);
}
}
Output:
public class AA {
public static void main(String[] args) {
System.out.println(0 L);
}
}
Expected behavior:
the long 0L shouldn't be touched by the code beautifier, but instead, there is a forbidden space inserted between the "0" and the "L". Examples: the playground linked above, as well as a commit in my project thing (its a really small project i know), as well as the Travis CI build that failed for that commit
The config file used in my project is slightly different, here it is.
Issue-Label Bot is automatically applying the label bug to this issue, with a confidence of 0.62. Please mark this comment with 👍 or 👎 to give our bot feedback!
meadowsys
changed the title
0L shouldn't have a space inserted between them
the number 0L shouldn't have a space inserted between the "0" and the "L"
Jun 20, 2020
Unibeautify Playground link
Language: Java
Config:
Input:
Output:
Expected behavior:
the long 0L shouldn't be touched by the code beautifier, but instead, there is a forbidden space inserted between the "0" and the "L". Examples: the playground linked above, as well as a commit in my project thing (its a really small project i know), as well as the Travis CI build that failed for that commit
The config file used in my project is slightly different, here it is.
Other longs are also affected (like here).
The text was updated successfully, but these errors were encountered: