diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2024-04-29 00:42:46 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2024-04-29 15:20:41 +0200 |
commit | 1d253988076e8848b8e30141229624cfc7b62c06 (patch) | |
tree | 1b637d71c0eaf2710602d52d1c931a347bebb90e /org.eclipse.jgit.test | |
parent | cdb43391b046cbb0d8ba008c0e038a46a8cc78d5 (diff) | |
download | jgit-1d253988076e8848b8e30141229624cfc7b62c06.tar.gz jgit-1d253988076e8848b8e30141229624cfc7b62c06.zip |
[errorprone] Fix pattern ProtectedMembersInFinalClass
See https://errorprone.info/bugpattern/ProtectedMembersInFinalClass
Change-Id: I5993093ca012f091dfe8ee1f2099b9596c2ee697
Diffstat (limited to 'org.eclipse.jgit.test')
-rw-r--r-- | org.eclipse.jgit.test/tst/org/eclipse/jgit/util/http/HttpCookiesMatcher.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/util/http/HttpCookiesMatcher.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/util/http/HttpCookiesMatcher.java index 18faab5c9f..c1c72804da 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/util/http/HttpCookiesMatcher.java +++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/util/http/HttpCookiesMatcher.java @@ -92,7 +92,7 @@ public final class HttpCookiesMatcher { } @SuppressWarnings("boxing") - protected static void describeCookie(Description description, + private static void describeCookie(Description description, HttpCookie cookie) { description.appendText("HttpCookie["); description.appendText("name: ").appendValue(cookie.getName()) |