Java: Inline expectation should have space after $

This was a regex-find-replace from `// \$(?! )` (using a negative lookahead) to `// $ `.
This commit is contained in:
Owen Mansel-Chan
2026-03-03 14:56:35 +00:00
parent 219ea28217
commit ef345a3279
87 changed files with 2744 additions and 2746 deletions

View File

@@ -12,7 +12,7 @@ class Test {
class A extends ChannelInboundHandlerAdapter {
public void channelRead(ChannelHandlerContext ctx, Object msg) {
sink(msg); // $hasTaintFlow
sink(msg); // $ hasTaintFlow
}
}
@@ -21,7 +21,7 @@ class Test {
ByteBuf bb = (ByteBuf) msg;
byte[] data = new byte[1024];
bb.readBytes(data);
sink(data); // $hasTaintFlow
sink(data); // $ hasTaintFlow
}
}
@@ -73,4 +73,4 @@ class Test {
sink(payload); // $ hasTaintFlow
}
}
}
}