mirror of https://github.com/jenkinsci/jenkins.git
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:
parent
9f200b11b6
commit
b0eafed55e
|
@ -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
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue