You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/com/cloudbees/jenkins/plugins/bitbucket/impl/credentials/BitbucketOAuthCredentialMatcher.java
+18-16Lines changed: 18 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -30,20 +30,22 @@
30
30
importjava.util.logging.Level;
31
31
importjava.util.logging.Logger;
32
32
33
-
// Although the CredentialsMatcher documentation says that the best practice
34
-
// is to implement CredentialsMatcher.CQL too, this class does not implement
35
-
// CredentialsMatcher.CQL, for the following reasons:
36
-
//
37
-
// * CQL supports neither method calls like username.contains(".")
38
-
// nor any regular-expression matching that could be used instead.
39
-
// * There don't seem to be any public credential-provider plugins that
40
-
// would benefit from CQL.
33
+
/*
34
+
* Although the CredentialsMatcher documentation says that the best practice
35
+
* is to implement CredentialsMatcher.CQL too, this class does not implement
36
+
* CredentialsMatcher.CQL, for the following reasons:
37
+
*
38
+
* - CQL supports neither method calls like username.contains(".")
39
+
* nor any regular-expression matching that could be used instead;
40
+
* - there don't seem to be any public credential-provider plugins that
0 commit comments