Skip to content

Commit

Permalink
Revert "use static block"
Browse files Browse the repository at this point in the history
This reverts commit 73ebee2.
  • Loading branch information
diegomarquezp committed Feb 5, 2025
1 parent 73ebee2 commit 06acc4a
Showing 1 changed file with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,8 @@
@RunWith(JUnit4.class)
public abstract class AbstractDataStoreFactoryTest {

private static final String STRING_ID;
private static final String BOOLEAN_ID;

static {
STRING_ID = "String";
BOOLEAN_ID = "Boolean";
}
private static final String STRING_ID = "String";
private static final String BOOLEAN_ID = "Boolean";
DataStoreFactory dataStore;
DataStore<String> stringTyped;
DataStore<Boolean> boolTyped;
Expand Down

0 comments on commit 06acc4a

Please sign in to comment.