Skip to content
Snippets Groups Projects
Commit 7ac27a48 authored by fedoreno's avatar fedoreno
Browse files

SSDM-2780: json-ignoring getFetchOptionsStringBuilder's in DTOs

SVN: 35753
parent c80682a2
No related branches found
No related tags found
No related merge requests found
......@@ -164,8 +164,9 @@ public class V3APIReport
{
boolean isPublic = Modifier.isPublic(method.getModifiers());
boolean isAbstract = Modifier.isAbstract(method.getModifiers());
boolean hasJsonIgnore = method.getAnnotation(JsonIgnore.class) != null;
if (false == isAbstract && isPublic)
if (false == isAbstract && isPublic && false == hasJsonIgnore)
{
methods.add(method);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment