Skip to content

Commit

Permalink
Read BanSerializableRead and InsecureCipherMode allowlists as files
Browse files Browse the repository at this point in the history
instead of resources, so changes are picked up immediately instead of
bundled into the JavaBuilder release.

PiperOrigin-RevId: 385233047
  • Loading branch information
cushon authored and Error Prone Team committed Jul 16, 2021
1 parent d2bd5fe commit eb2d146
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
@RunWith(JUnit4.class)
public class BanSerializableReadTest {
private final CompilationTestHelper compilationHelper =
CompilationTestHelper.newInstance(BanSerializableRead.class, getClass());
CompilationTestHelper.newInstance(BanSerializableRead.class, getClass())
;

private final BugCheckerRefactoringTestHelper refactoringHelper =
BugCheckerRefactoringTestHelper.newInstance(BanSerializableRead.class, getClass());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
@RunWith(JUnit4.class)
public class InsecureCipherModeTest {
private final CompilationTestHelper compilationHelper =
CompilationTestHelper.newInstance(InsecureCipherMode.class, getClass());
CompilationTestHelper.newInstance(InsecureCipherMode.class, getClass())
;

@Test
public void testPositiveCase() {
Expand Down

0 comments on commit eb2d146

Please sign in to comment.