We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91d55c3 commit df5b2c4Copy full SHA for df5b2c4
src/main/java/com/cloudbees/jenkins/plugins/bitbucket/endpoints/BitbucketEndpointConfiguration.java
@@ -291,6 +291,20 @@ public synchronized AbstractBitbucketEndpoint getDefaultEndpoint() {
291
*
292
* @param serverURL the server URL.
293
* @return the normalized server URL.
294
+ * @deprecated
295
+ * @see #normalizeServerURL
296
+ */
297
+ @CheckForNull
298
+ @Deprecated
299
+ public static String normalizeServerUrl(@CheckForNull String serverURL) {
300
+ return normalizeServerURL(serverURL);
301
+ }
302
+
303
+ /**
304
+ * Fix a server URL.
305
+ *
306
+ * @param serverURL the server URL.
307
+ * @return the normalized server URL.
308
*/
309
@CheckForNull
310
public static String normalizeServerURL(@CheckForNull String serverURL) {
0 commit comments