Skip to content

Commit e8891c0

Browse files
arthurbeyer1601cbuschka
authored andcommitted
Renamed KeepTheCompilerHappy to KeepsTheCompilerHappy
1 parent 59c8da0 commit e8891c0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/com/github/codestickers/KeepTheCompilerHappy.java src/main/java/com/github/codestickers/KeepsTheCompilerHappy.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
ElementType.TYPE_PARAMETER,
1919
ElementType.TYPE_USE})
2020
@Documented
21-
public @interface KeepTheCompilerHappy {
21+
public @interface KeepsTheCompilerHappy {
2222
String value() default "";
2323
}
2424

src/test/java/com/github/codestickers/KeepTheCompilerHappyTest.java src/test/java/com/github/codestickers/KeepsTheCompilerHappyTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package com.github.codestickers;
22

3-
public class KeepTheCompilerHappyTest {
3+
public class KeepsTheCompilerHappyTest {
44

5-
@KeepTheCompilerHappy("Needs to return something when testing")
5+
@KeepsTheCompilerHappy("Needs to return something when testing")
66
public static String usesIsTestVariableForWhateverReason(boolean isTest) {
77
if (isTest) {
88
return "test";

0 commit comments

Comments
 (0)