Skip to content

Commit 4f4d7fc

Browse files
Gregory PettGregory Pett
authored andcommitted
adding spotless annotations
1 parent 1171099 commit 4f4d7fc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/org/kohsuke/github/GHCommit.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,14 +257,15 @@ public static class User {
257257

258258
/** The gravatar id. */
259259
// TODO: what if someone who doesn't have an account on GitHub makes a commit?
260-
@SuppressFBWarnings(value = "UUF_UNUSED_FIELD", justification = "We don't provide it in API now")
260+
@SuppressFBWarnings(value = "UUF_UNUSED_PUBLIC_OR_PROTECTED_FIELD", justification = "We don't provide it in API now")
261261
public String url, avatar_url, gravatar_id;
262262

263263
/** The id. */
264264
@SuppressFBWarnings(value = "UUF_UNUSED_FIELD", justification = "We don't provide it in API now")
265265
int id;
266266

267267
/** The login. */
268+
@SuppressFBWarnings(value = "UUF_UNUSED_PUBLIC_OR_PROTECTED_FIELD", justification = "only used in the backend code")
268269
public String login;
269270
}
270271

0 commit comments

Comments
 (0)