Skip to content

Commit 19896c1

Browse files
committed
set candidate methods accessible
1 parent dd9b593 commit 19896c1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/com/cinchapi/etl/TransformerSerializationFactory.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ public ByteBuffer serialize(Transformer transformer) {
206206
.collect(Collectors.toList());
207207
Method method = null;
208208
for (Method candidate : candidates) {
209+
candidate.setAccessible(true);
209210
Class<? extends Transformer> clazz = lambdas
210211
.get(candidate.getName());
211212
if(clazz == null) {

0 commit comments

Comments
 (0)