Skip to content

Commit

Permalink
Merge pull request #11 from Redrield/patch-1
Browse files Browse the repository at this point in the history
Fix erroneous use of name() over methodName()
  • Loading branch information
Oblarg authored Nov 25, 2019
2 parents 1cfec8f + 8192a38 commit 0fc8f14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/main/java/io/github/oblarg/oblog/Logger.java
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ private interface SetterProcessor {
.withPosition(params.columnIndex(), params.rowIndex())
.withSize(params.width(), params.height())
.getEntry(),
() -> getFromMethod(supplierFinal, params.name()));
() -> getFromMethod(supplierFinal, params.methodName()).get());
}
}),
entry(Log.PDP.class,
Expand Down

0 comments on commit 0fc8f14

Please sign in to comment.