Skip to content

Commit

Permalink
Translate german javadoc to english
Browse files Browse the repository at this point in the history
  • Loading branch information
UffmannA committed Nov 7, 2017
1 parent 68ab037 commit 360bcd7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
8 changes: 2 additions & 6 deletions src/main/java/net/karneim/pojobuilder/model/OptionalM.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,14 @@ public OptionalM(TypeM type, String absentMethodName) {
}

/**
* Liefert den Wert von {@link #type}.
*
* @return den Wert von {@link #type}
* @return the value of {@link #type}
*/
public TypeM getType() {
return type;
}

/**
* Liefert den Wert von {@link #absentMethodName}.
*
* @return den Wert von {@link #absentMethodName}
* @return the value of {@link #absentMethodName}
*/
public String getAbsentMethodName() {
return absentMethodName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,14 @@ public PrimitiveTypeM(Class<?> type, Class<?> boxType) {
}

/**
* Liefert den Wert von {@link #type}.
*
* @return den Wert von {@link #type}
* @return the value of {@link #type}
*/
public Class<?> getType() {
return type;
}

/**
* Liefert den Wert von {@link #boxType}.
*
* @return den Wert von {@link #boxType}
* @return the value of {@link #boxType}
*/
public TypeM getBoxType() {
return boxType;
Expand Down

0 comments on commit 360bcd7

Please sign in to comment.