fix testdata quotes

This commit is contained in:
Dmitry Batkovich
2019-02-06 18:18:03 +03:00
parent 954dbb15e2
commit 67c23e9a2f
2 changed files with 6 additions and 6 deletions
@@ -2,18 +2,18 @@ import org.jetbrains.annotations.NotNull;
class Main111 {
Main111(<warning descr="Parameter annotated @NotNull should not receive null as an argument">@NotNull</warning> Object o) {
Main111(<warning descr="Parameter annotated @NotNull should not receive 'null' as an argument">@NotNull</warning> Object o) {
}
static class SubClass {
SubClass(<warning descr="Parameter annotated @NotNull should not receive null as an argument">@NotNull</warning> Object o) {
SubClass(<warning descr="Parameter annotated @NotNull should not receive 'null' as an argument">@NotNull</warning> Object o) {
}
}
static class SubClass2 {
SubClass2(<warning descr="Parameter annotated @NotNull should not receive null as an argument">@NotNull</warning> Object o) {
SubClass2(<warning descr="Parameter annotated @NotNull should not receive 'null' as an argument">@NotNull</warning> Object o) {
}
}
@@ -34,7 +34,7 @@ class Main111 {
abstract static class ParamerizedRunnable {
private Object parameter;
public ParamerizedRunnable(<warning descr="Parameter annotated @NotNull should not receive null as an argument"><warning descr="Parameter annotated @NotNull should not receive null as an argument">@NotNull</warning></warning> Object parameter) {
public ParamerizedRunnable(<warning descr="Parameter annotated @NotNull should not receive 'null' as an argument">@NotNull</warning> Object parameter) {
this.parameter = parameter;
}
@@ -1,11 +1,11 @@
import org.jetbrains.annotations.NotNull;
class Test {
void someMethod(<warning descr="Parameter annotated @NotNull should not receive null as an argument">@NotNull</warning> Object warn, <warning descr="Parameter annotated @NotNull should not receive null as an argument">@NotNull</warning> Object o2, <warning descr="Parameter annotated @NotNull should not receive null as an argument">@NotNull</warning> Object warn1) {
void someMethod(<warning descr="Parameter annotated @NotNull should not receive 'null' as an argument">@NotNull</warning> Object warn, <warning descr="Parameter annotated @NotNull should not receive 'null' as an argument">@NotNull</warning> Object o2, <warning descr="Parameter annotated @NotNull should not receive 'null' as an argument">@NotNull</warning> Object warn1) {
}
static void someStaticMethod(Object notAnnotated, <warning descr="Parameter annotated @NotNull should not receive null as an argument">@NotNull</warning> Object o2, <warning descr="Parameter annotated @NotNull should not receive null as an argument">@NotNull</warning> Object warn2) {
static void someStaticMethod(Object notAnnotated, <warning descr="Parameter annotated @NotNull should not receive 'null' as an argument">@NotNull</warning> Object o2, <warning descr="Parameter annotated @NotNull should not receive 'null' as an argument">@NotNull</warning> Object warn2) {
}