try to make quick fix name more clear

This commit is contained in:
Bas Leijdekkers
2017-04-18 23:06:49 +02:00
parent ad4c63bd1f
commit 58f662cf62
9 changed files with 11 additions and 11 deletions

View File

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

View File

@@ -1,4 +1,4 @@
// "Replace with ThreadLocal.withInitial" "true"
// "Replace with ThreadLocal.withInitial()" "true"
public class Main {
// comment
ThreadLocal<? extends CharSequence> tlr = ThreadLocal.withInitial(() -> "initial");

View File

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

View File

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

View File

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

View File

@@ -1,4 +1,4 @@
// "Replace with ThreadLocal.withInitial" "true"
// "Replace with ThreadLocal.withInitial()" "true"
public class Main {
ThreadLocal<? extends CharSequence> tlr = new Th<caret>readLocal<String>() {
// comment

View File

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

View File

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