[ https://issues.apache.org/jira/browse/MINDEXER-122?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16913833#comment-16913833 ]
Hudson commented on MINDEXER-122: --------------------------------- Build succeeded in Jenkins: Maven TLP » maven-indexer » master #19 See https://builds.apache.org/job/maven-box/job/maven-indexer/job/master/19/ > Add getName() to Record.EntryKey > -------------------------------- > > Key: MINDEXER-122 > URL: https://issues.apache.org/jira/browse/MINDEXER-122 > Project: Maven Indexer > Issue Type: Improvement > Reporter: Stephen Buergler > Priority: Trivial > > Currently I'm doing this to pull the name field out of EntryKey > {code:java} > @SneakyThrows > private static MethodHandle entryKeyNameField() { > return MethodHandles.privateLookupIn(EntryKey.class, > MethodHandles.lookup()) > .findGetter(EntryKey.class, "name", String.class); > } > private static final MethodHandle entryKeyNameField = entryKeyNameField(); > @SneakyThrows > static String getName(EntryKey entryKey) { > return (String) entryKeyNameField.invokeExact(entryKey); > } > {code} > It would be nice if getName() was a method on EntryKey itself. -- This message was sent by Atlassian Jira (v8.3.2#803003)