Skip to content

Remove redundant {/} in annotation usage #542

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions java/codec-template.java.j2
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public final class {{ service_name|capital }}{{ method.name|capital }}Codec {
{% set singleRequestValue = method.request.params|length == 1 and request_new_params|length == 0 %}
{% if not (noRequestValue or singleRequestValue) %}

@edu.umd.cs.findbugs.annotations.SuppressFBWarnings({"URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD"})
@edu.umd.cs.findbugs.annotations.SuppressFBWarnings("URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
public static class RequestParameters {
{% for param in method.request.params %}

Expand Down Expand Up @@ -235,7 +235,7 @@ public final class {{ service_name|capital }}{{ method.name|capital }}Codec {
{% set singleResponseValue = method.response.params|length == 1 and response_new_params|length == 0 %}
{% if not (noResponseValue or singleResponseValue) %}

@edu.umd.cs.findbugs.annotations.SuppressFBWarnings({"URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD"})
@edu.umd.cs.findbugs.annotations.SuppressFBWarnings("URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD")
public static class ResponseParameters {
{% for param in method.response.params %}

Expand Down