Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/PluginWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@
*/
@Deprecated
public void setOptionalDependants(@NonNull Set<String> optionalDependents) {
setOptionalDependents(dependents);
setOptionalDependents(optionalDependents);

Check warning on line 256 in core/src/main/java/hudson/PluginWrapper.java

View check run for this annotation

ci.jenkins.io / Code Coverage

Not covered line

Line 256 is not covered by tests

Check warning on line 256 in core/src/main/java/hudson/PluginWrapper.java

View check run for this annotation

ci.jenkins.io / Code Coverage

Not covered line

Line 256 is not covered by tests
}

/**
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/model/StreamBuildListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public StreamBuildListener(File out, Charset charset) throws IOException {
}

/**
* @deprecated as of TODO
* @deprecated as of 2.329
* The caller should use {@link #StreamBuildListener(OutputStream, Charset)} to pass in
* the charset and output stream separately, so that this class can handle encoding correctly.
*/
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/slaves/JNLPLauncher.java
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ public void launch(SlaveComputer computer, TaskListener listener) {
}

/**
* @deprecated as of 1.XXX
* @deprecated as of 2.2
* Use {@link Jenkins#getDescriptor(Class)}
*/
@Deprecated
Expand Down
4 changes: 2 additions & 2 deletions core/src/main/java/hudson/util/StreamTaskListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public StreamTaskListener(@NonNull PrintStream out) {
}

/**
* @deprecated as of TODO
* @deprecated as of 2.328
* The caller should use {@link #StreamTaskListener(OutputStream, Charset)} to pass in
* the charset and output stream separately, so that this class can handle encoding correctly,
* or use {@link #fromStdout()} or {@link #fromStderr()}.
Expand All @@ -94,7 +94,7 @@ public StreamTaskListener(@NonNull OutputStream out, @CheckForNull Charset chars
}

/**
* @deprecated as of TODO
* @deprecated as of 2.329
* The caller should use {@link #StreamTaskListener(File, Charset)} to pass in
* the charset and file separately, so that this class can handle encoding correctly.
*/
Expand Down
Loading