Skip to content

Commit

Permalink
[lang] Remove invalid @pure annotation on toString(JsonBuffer).
Browse files Browse the repository at this point in the history
Signed-off-by: Stéphane Galland <galland@arakhne.org>
  • Loading branch information
gallandarakhneorg committed Feb 21, 2021
1 parent ca77aab commit f7dfc75
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ public final String toString() {
* @param builder the string builder.
* @since 0.7
*/
@Pure
protected abstract void toString(ToStringBuilder builder);

/** Replies the skill corresponding to the given capacity.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ protected AgentTrait() {
}

@Override
@Pure
protected void toString(ToStringBuilder builder) {
builder.add("type", getClass().getSimpleName()); //$NON-NLS-1$
builder.add("owner", getOwner()); //$NON-NLS-1$
Expand Down

0 comments on commit f7dfc75

Please sign in to comment.