Skip to content

Commit

Permalink
Remove redundant static field
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Pinčuk <alexander.v.pinchuk@gmail.com>
  • Loading branch information
avpinchuk committed Apr 2, 2024
1 parent 752d7fc commit fbb8be6
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@

public class LangModelVerifierBuildCompatibleExtension implements BuildCompatibleExtension {

public static boolean langModelVerifierBuildCompatibleExtensionCalled;

public static boolean langModelVerifierBuildCompatibleExtensionPassed;

@Discovery
Expand All @@ -36,7 +34,6 @@ public void discovery(ScannedClasses scannedClasses) {

@Enhancement(types = LangModelVerifier.class)
public void configure(ClassConfig classConfig) {
langModelVerifierBuildCompatibleExtensionCalled = true;
LangModelVerifier.verify(classConfig.info());
// If there's an error, the verify() method will throw an exception
langModelVerifierBuildCompatibleExtensionPassed = true;
Expand Down

0 comments on commit fbb8be6

Please sign in to comment.