mirror of https://github.com/apache/openjpa.git
OPENJPA-1492 Change access on ReverseMappingTool#getAnnotationsForMeta(Object) to public. Request from Laird Nelson.
git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@920404 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7a8052cd73
commit
4b3d520ee9
|
@ -943,7 +943,7 @@ public class ReverseMappingTool
|
|||
/**
|
||||
* Returns a list of stringified annotations for specified meta.
|
||||
*/
|
||||
protected List getAnnotationsForMeta(Object meta) {
|
||||
public List getAnnotationsForMeta(Object meta) {
|
||||
if (null == _annos)
|
||||
return null;
|
||||
return (List) _annos.get(meta);
|
||||
|
|
Loading…
Reference in New Issue