mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-15 11:58:18 +07:00
psi: don't insert unnecessary parentheses when replacing expression (IDEA-220761)
GitOrigin-RevId: 7fe48d0f72581221a633373933b941c09b2c69ed
This commit is contained in:
committed by
intellij-monorepo-bot
parent
670c18edc5
commit
ea73b88a7c
+8
@@ -0,0 +1,8 @@
|
||||
// "Remove redundant cast(s)" "true"
|
||||
class Test {
|
||||
{
|
||||
int i = 1;
|
||||
int j = 2;
|
||||
System.out.println(j * (i % j));
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// "Remove redundant cast(s)" "true"
|
||||
class Test {
|
||||
{
|
||||
int i = 1;
|
||||
int j = 2;
|
||||
System.out.println(j * ((i<caret>nt)(i % j)));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user