mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
disprefer rarely used Object methods
This commit is contained in:
+1
-1
@@ -1,5 +1,5 @@
|
||||
class Test {
|
||||
public void foo() {
|
||||
Runnable r = () -> {<caret>};
|
||||
Runnable r = () -> {n<caret>};
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
class Test {
|
||||
public void foo() {
|
||||
new Thread(() -> <caret>);
|
||||
new Thread(() -> n<caret>);
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
class Test {
|
||||
public void foo() {
|
||||
Runnable r = () -> <caret>
|
||||
Runnable r = () -> n<caret>
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user