Skip to content

Commit

Permalink
BS-123-1 | Vijay | classpath
Browse files Browse the repository at this point in the history
  • Loading branch information
vijayanandtwks committed Aug 1, 2023
1 parent e61acb1 commit 0459a0e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ private void enrichUsingReflection(String extensionClassStr, Collection<Map<Stri
Constructor constructor = extensionClass.getDeclaredConstructor();
constructor.setAccessible(true);
ResultSetExtension extension = (ResultSetExtension) constructor.newInstance();
extension.enrich(collection, jasperReport);
extension.enrich(collection, jasperReport);//enrich
} catch (Exception e) {
logger.error(String.format("Error caused during reflection in enrichUsingReflection method: %s", e.getMessage()));
throw new RuntimeException(e);
Expand Down

0 comments on commit 0459a0e

Please sign in to comment.