mirror of
https://github.com/github/codeql.git
synced 2026-03-31 04:38:18 +02:00
Java: Inline expectation should have space after $
This was a regex-find-replace from `// \$(?! )` (using a negative lookahead) to `// $ `.
This commit is contained in:
@@ -19,7 +19,7 @@ class InsecureJavaMailTest {
|
||||
if (null != authenticator) {
|
||||
properties.put("mail.smtp.auth", "true");
|
||||
}
|
||||
final Session session = Session.getInstance(properties, authenticator); // $hasInsecureJavaMail
|
||||
final Session session = Session.getInstance(properties, authenticator); // $ hasInsecureJavaMail
|
||||
}
|
||||
|
||||
public void testSecureJavaMail() {
|
||||
|
||||
Reference in New Issue
Block a user