From 32828ff9eb713bf6e8109a41602e0b5fb426044c Mon Sep 17 00:00:00 2001 From: Gunnar Morling Date: Sun, 17 May 2015 21:21:56 +0200 Subject: [PATCH] #494 Fixing wrong indentation --- .../ap/model/assignment/Assignment.java | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/processor/src/main/java/org/mapstruct/ap/model/assignment/Assignment.java b/processor/src/main/java/org/mapstruct/ap/model/assignment/Assignment.java index a22fa0b0d..8ecd3eccb 100644 --- a/processor/src/main/java/org/mapstruct/ap/model/assignment/Assignment.java +++ b/processor/src/main/java/org/mapstruct/ap/model/assignment/Assignment.java @@ -50,16 +50,16 @@ public interface Assignment { * * @return imported types */ - Set getImportTypes(); + Set getImportTypes(); /** * returns all types exception types thrown by this assignment. * * @return exceptions thrown */ - List getExceptionTypes(); + List getExceptionTypes(); - /** + /** * An assignment in itself can wrap another assignment. E.g.: *
    *
  • a MethodReference can wrap a TypeConversion, another MethodReference and ultimately a Simple
  • @@ -68,22 +68,22 @@ public interface Assignment { * * @param assignment the assignment to set */ - void setAssignment( Assignment assignment ); + void setAssignment(Assignment assignment); - /** - * the source reference being a source-getter, a constant, etc. - * - * @return source reference - */ - String getSourceReference(); + /** + * the source reference being a source-getter, a constant, etc. + * + * @return source reference + */ + String getSourceReference(); - /** - * Returns whether the type of assignment - * - * @return {@link AssignmentType} - */ - AssignmentType getType(); + /** + * Returns whether the type of assignment + * + * @return {@link AssignmentType} + */ + AssignmentType getType(); - boolean isUpdateMethod(); + boolean isUpdateMethod(); }