better quick fix name

This commit is contained in:
Bas Leijdekkers
2017-05-02 16:05:50 +02:00
parent 5c96f13a43
commit 5016eead0e
7 changed files with 7 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
// "Replace with new Thread() with lambda argument" "true"
// "Replace with new Thread(() -> {…})" "true"
public class Main {
public void testThread() {
// Comment outside

View File

@@ -1,4 +1,4 @@
// "Replace with new Thread() with lambda argument" "true"
// "Replace with new Thread(() -> {…})" "true"
public class Main {
public void testThread() {
new <caret>Thread() {

View File

@@ -1,4 +1,4 @@
// "Replace with new Thread() with lambda argument" "false"
// "Replace with new Thread(() -> {…})" "false"
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

View File

@@ -1,4 +1,4 @@
// "Replace with new Thread() with lambda argument" "false"
// "Replace with new Thread(() -> {…})" "false"
public class Main {
public void testThread() {
new <caret>Thread() {

View File

@@ -1,4 +1,4 @@
// "Replace with new Thread() with lambda argument" "false"
// "Replace with new Thread(() -> {…})" "false"
public class Main {
public void testThread() {
new <caret>Thread() {

View File

@@ -1,4 +1,4 @@
// "Replace with new Thread() with lambda argument" "false"
// "Replace with new Thread(() -> {…})" "false"
public class Main {
public void testThread() {
new <caret>Thread() {