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:
Donald Woods 2010-03-08 17:07:32 +00:00
parent 7a8052cd73
commit 4b3d520ee9
1 changed files with 1 additions and 1 deletions

View File

@ -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);