Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fill in since annotations #7239

Merged
merged 1 commit into from
Oct 11, 2022
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/model/AbstractBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ public Queue.Executable getParentExecutable() {
* {@link #getDisplayName()}.
* @deprecated navigation through a hierarchy should be done through breadcrumbs, do not add a link using this method
*/
@Deprecated(since = "TODO")
@Deprecated(since = "2.364")
public String getUpUrl() {
return Functions.getNearestAncestorUrl(Stapler.getCurrentRequest(), getParent()) + '/';
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public void checkName(String name) throws Failure {
* @throws Failure
* if the user has to be informed about an illegal name, forces the user to change the name before submitting. The message of the failure will be presented to the user.
*
* @since TODO
* @since 2.367
*/
public void checkName(String parentName, String name) throws Failure {
checkName(name);
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/jenkins/triggers/TriggeredItem.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

/**
* An item which can be configured with {@link Trigger}s.
* @since TODO
* @since 2.372
*/
public interface TriggeredItem extends Item {

Expand Down
2 changes: 1 addition & 1 deletion core/src/main/resources/lib/layout/search-bar.jelly
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ THE SOFTWARE.
</st:attribute>
Creates a search input

@since TODO
@since 2.369
</st:documentation>

<div class="jenkins-search ${attrs.clazz}">
Expand Down