Skip to content

Commit

Permalink
Fix 'static' modifier out of order
Browse files Browse the repository at this point in the history
Signed-off-by: Dinu John <[email protected]>
  • Loading branch information
dinujoh committed May 6, 2024
1 parent 3e0778a commit 2b2f22a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ public class BsonHelper {
// "org.bson.BsonRegularExpression" Regex and Array not support as _id field
);

private final static Function<Object, Bson> GT_FUNCTION = a -> gt("_id", a);
private final static Function<Object, Bson> GTE_FUNCTION = a -> gte("_id", a);
private static final Function<Object, Bson> GT_FUNCTION = a -> gt("_id", a);
private static final Function<Object, Bson> GTE_FUNCTION = a -> gte("_id", a);
private static final Function<Object, Bson> LTE_FUNCTION = a -> lte("_id", a);
private static final String REGEX_PATTERN = "pattern";
private static final String REGEX_OPTIONS = "options";
Expand Down

0 comments on commit 2b2f22a

Please sign in to comment.