Small method signature change to help java6 compilers compile.
This commit is contained in:
parent
cab1a4bc1e
commit
36cf1280e4
|
@ -96,11 +96,7 @@ public abstract class AbstractApiDocWriter {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void printApiTableBean(ApiDocWriteEvent<ApiDocNode> event,String name,String...skipProperties) throws SAXException {
|
public void printApiTableBean(ApiDocWriteEvent<ApiDocNode> event,String name,String...skipProperties) throws SAXException {
|
||||||
printApiTableBean(event, event.getEventObject().getUserData(), name, skipProperties);
|
printApiTableBean(event.getDoc(), event.getWriter(), event.getEventObject().getUserData(), name, skipProperties);
|
||||||
}
|
|
||||||
|
|
||||||
public void printApiTableBean(ApiDocWriteEvent<ApiDocNode> event,Object bean,String name,String...skipProperties) throws SAXException {
|
|
||||||
printApiTableBean(event.getDoc(), event.getWriter(), bean, name, skipProperties);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void printApiTableBean(ApiDoc doc,ApiDocContentWriter writer,Object bean,String name,String...skipProperties) throws SAXException {
|
public void printApiTableBean(ApiDoc doc,ApiDocContentWriter writer,Object bean,String name,String...skipProperties) throws SAXException {
|
||||||
|
|
Loading…
Reference in a new issue