Skip to content

Commit b0eafed

Browse files
renovate[bot]MarkEWaitedas7pad
authored
Update dependency org.jenkins-ci:jenkins to v1.141 (jenkinsci#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>
1 parent 9f200b1 commit b0eafed

File tree

4 files changed

+1
-10
lines changed

4 files changed

+1
-10
lines changed

cli/src/main/java/hudson/util/QuotedStringTokenizer.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636

3737
package hudson.util;
3838

39-
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
4039
import java.util.ArrayList;
4140
import java.util.List;
4241
import java.util.NoSuchElementException;
@@ -140,9 +139,6 @@ public String[] toArray() {
140139

141140
/* ------------------------------------------------------------ */
142141
@Override
143-
@SuppressFBWarnings(
144-
value = {"SF_DEAD_STORE_DUE_TO_SWITCH_FALLTHROUGH", "SF_SWITCH_FALLTHROUGH"},
145-
justification = "TODO needs triage")
146142
public boolean hasMoreTokens()
147143
{
148144
// Already found a token

core/src/main/java/hudson/Functions.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2470,7 +2470,6 @@ public static String breakableString(final String plain) {
24702470
* Advertises the minimum set of HTTP headers that assist programmatic
24712471
* discovery of Jenkins.
24722472
*/
2473-
@SuppressFBWarnings(value = "UC_USELESS_VOID_METHOD", justification = "TODO needs triage")
24742473
public static void advertiseHeaders(HttpServletResponse rsp) {
24752474
Jenkins j = Jenkins.getInstanceOrNull();
24762475
if (j != null) {

core/src/main/java/hudson/util/jna/RegistryKey.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
package hudson.util.jna;
1818

1919
import com.sun.jna.ptr.IntByReference;
20-
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
2120
import java.nio.charset.StandardCharsets;
2221
import java.util.Collection;
2322
import java.util.TreeMap;
@@ -90,7 +89,6 @@ public int getIntValue(String valueName) {
9089
return convertBufferToInt(getValue(valueName));
9190
}
9291

93-
@SuppressFBWarnings(value = "SF_SWITCH_FALLTHROUGH", justification = "TODO needs triage")
9492
private byte[] getValue(String valueName) {
9593
IntByReference pType, lpcbData;
9694
byte[] lpData = new byte[1];
@@ -151,7 +149,6 @@ public void setValue(String name, int value) {
151149
/**
152150
* Does a specified value exist?
153151
*/
154-
@SuppressFBWarnings(value = "SF_SWITCH_FALLTHROUGH", justification = "TODO needs triage")
155152
public boolean valueExists(String name) {
156153
IntByReference pType, lpcbData;
157154
byte[] lpData = new byte[1];
@@ -226,7 +223,6 @@ public RegistryKey open(String subKeyName, int access) {
226223
*
227224
* @return TreeMap with name and value pairs
228225
*/
229-
@SuppressFBWarnings(value = "SF_SWITCH_FALLTHROUGH", justification = "TODO needs triage")
230226
public TreeMap<String, Object> getValues() {
231227
int dwIndex, result;
232228
char[] lpValueName;

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ THE SOFTWARE.
2828
<parent>
2929
<groupId>org.jenkins-ci</groupId>
3030
<artifactId>jenkins</artifactId>
31-
<version>1.140</version>
31+
<version>1.141</version>
3232
<relativePath />
3333
</parent>
3434

0 commit comments

Comments
 (0)