Skip to content

Commit

Permalink
HSEARCH-2868 Fix typos (missing "final" keywords)
Browse files Browse the repository at this point in the history
  • Loading branch information
yrodiere authored and Sanne committed Sep 4, 2017
1 parent 98a4e7a commit 1487cb6
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -36,11 +36,11 @@
@TestForIssue(jiraKey = "HSEARCH-679")
public class CollectionUpdateEventTest {

private static boolean WITH_CLASS_BRIDGE_ON_ITEM = true;
private static boolean WITHOUT_CLASS_BRIDGE_ON_ITEM = false;
private static final boolean WITH_CLASS_BRIDGE_ON_ITEM = true;
private static final boolean WITHOUT_CLASS_BRIDGE_ON_ITEM = false;

private static boolean WITH_CLASS_BRIDGE_ON_CATALOG = true;
private static boolean WITHOUT_CLASS_BRIDGE_ON_CATALOG = false;
private static final boolean WITH_CLASS_BRIDGE_ON_CATALOG = true;
private static final boolean WITHOUT_CLASS_BRIDGE_ON_CATALOG = false;

/**
* If the top level class has a class bridge or dynamic boost, then we can't safely
Expand Down

0 comments on commit 1487cb6

Please sign in to comment.