Skip to content

Commit

Permalink
Bug fix. Releasing new version
Browse files Browse the repository at this point in the history
  • Loading branch information
Roberto-Gentili committed Mar 24, 2023
1 parent 9324978 commit 7e796f5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -52,7 +52,7 @@
@SuppressWarnings("unchecked")
public abstract class FieldAccessor implements Component {
public final static String REG_EXP_FOR_SIMPLE_FIELDS = "([a-zA-Z\\$\\_\\-0-9]*)(\\[*.*)";
public final static String REG_EXP_FOR_INDEXES_OF_INDEXED_FIELDS = "\\[([a-zA-Z0-9]*)\\]";
public final static String REG_EXP_FOR_INDEXES_OF_INDEXED_FIELDS = "\\[(.*?)\\]";

private List<ThrowingBiFunction<Object, String, Object, Throwable>> fieldRetrievers;
private List<ThrowingFunction<Object[], Boolean, Throwable>> fieldSetters;
Expand Down

0 comments on commit 7e796f5

Please sign in to comment.