mirror of
https://github.com/github/codeql.git
synced 2026-05-05 05:35:13 +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:
@@ -3,7 +3,7 @@ import java.net.URLConnection;
|
||||
|
||||
class Test {
|
||||
URLConnection test2() throws Exception {
|
||||
return new URL("https://example.com").openConnection(); // $hasNoTrustedResult
|
||||
return new URL("https://example.com").openConnection(); // $ hasNoTrustedResult
|
||||
}
|
||||
|
||||
URLConnection test3() throws Exception {
|
||||
|
||||
Reference in New Issue
Block a user