Fix PMD: Avoid modifiers which are implied by the context.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1455892 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-03-13 11:35:00 +00:00
parent 035e5c7115
commit fca46212ac
1 changed files with 1 additions and 1 deletions

View File

@ -85,5 +85,5 @@ public interface Builder<T> {
* *
* @return the object constructed or result calculated by the builder. * @return the object constructed or result calculated by the builder.
*/ */
public T build(); T build();
} }