Update dependency org.jenkins-ci:jenkins to v1.141 (#11139)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Mark Waite <mark.earl.waite@gmail.com>
Co-authored-by: Jakob Ackermann <das7pad@outlook.com>
This commit is contained in:
renovate[bot] 2025-10-04 22:12:27 +02:00 committed by GitHub
parent 9f200b11b6
commit b0eafed55e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 1 additions and 10 deletions

View File

@ -36,7 +36,6 @@
package hudson.util;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.util.ArrayList;
import java.util.List;
import java.util.NoSuchElementException;
@ -140,9 +139,6 @@ public class QuotedStringTokenizer
/* ------------------------------------------------------------ */
@Override
@SuppressFBWarnings(
value = {"SF_DEAD_STORE_DUE_TO_SWITCH_FALLTHROUGH", "SF_SWITCH_FALLTHROUGH"},
justification = "TODO needs triage")
public boolean hasMoreTokens()
{
// Already found a token

View File

@ -2470,7 +2470,6 @@ public class Functions {
* Advertises the minimum set of HTTP headers that assist programmatic
* discovery of Jenkins.
*/
@SuppressFBWarnings(value = "UC_USELESS_VOID_METHOD", justification = "TODO needs triage")
public static void advertiseHeaders(HttpServletResponse rsp) {
Jenkins j = Jenkins.getInstanceOrNull();
if (j != null) {

View File

@ -17,7 +17,6 @@ Lesser General Public License for more details.
package hudson.util.jna;
import com.sun.jna.ptr.IntByReference;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.nio.charset.StandardCharsets;
import java.util.Collection;
import java.util.TreeMap;
@ -90,7 +89,6 @@ public class RegistryKey implements AutoCloseable {
return convertBufferToInt(getValue(valueName));
}
@SuppressFBWarnings(value = "SF_SWITCH_FALLTHROUGH", justification = "TODO needs triage")
private byte[] getValue(String valueName) {
IntByReference pType, lpcbData;
byte[] lpData = new byte[1];
@ -151,7 +149,6 @@ public class RegistryKey implements AutoCloseable {
/**
* Does a specified value exist?
*/
@SuppressFBWarnings(value = "SF_SWITCH_FALLTHROUGH", justification = "TODO needs triage")
public boolean valueExists(String name) {
IntByReference pType, lpcbData;
byte[] lpData = new byte[1];
@ -226,7 +223,6 @@ public class RegistryKey implements AutoCloseable {
*
* @return TreeMap with name and value pairs
*/
@SuppressFBWarnings(value = "SF_SWITCH_FALLTHROUGH", justification = "TODO needs triage")
public TreeMap<String, Object> getValues() {
int dwIndex, result;
char[] lpValueName;

View File

@ -28,7 +28,7 @@ THE SOFTWARE.
<parent>
<groupId>org.jenkins-ci</groupId>
<artifactId>jenkins</artifactId>
<version>1.140</version>
<version>1.141</version>
<relativePath />
</parent>