Skip to content

Commit 7e58f44

Browse files
author
Aaron Echavarria
committed
remove unsed code
1 parent 59918a1 commit 7e58f44

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/main/java/io/jenkins/plugins/gitlabserverconfig/servers/GitLabServer.java

-12
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,6 @@ public class GitLabServer extends AbstractDescribableImpl<GitLabServer> {
171171
* credentials to use for
172172
* GitLab Server Authentication to access GitLab APIs
173173
*/
174-
private Integer indexingTimeout = 3600;
175-
176174
@DataBoundConstructor
177175
public GitLabServer(@NonNull String serverUrl, @NonNull String name, @NonNull String credentialsId) {
178176
this.serverUrl = defaultIfBlank(StringUtils.trim(serverUrl), GITLAB_SERVER_URL);
@@ -494,16 +492,6 @@ public Integer getHookTriggerDelay() {
494492
return this.hookTriggerDelay;
495493
}
496494

497-
@CheckForNull
498-
public Integer getIndexingTimeout() {
499-
return indexingTimeout;
500-
}
501-
502-
@DataBoundSetter
503-
public void setIndexingTimeout(Integer indexingTimeout) {
504-
this.indexingTimeout = indexingTimeout;
505-
}
506-
507495
/**
508496
* Our descriptor.
509497
*/

0 commit comments

Comments
 (0)