Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
teosarca committed Sep 7, 2017
1 parent 8ce1cac commit 29bd1a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/de/metas/ui/web/view/DefaultView.java
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ public Builder setParentViewId(final ViewId parentViewId)
return this;
}

public Builder setParentRowId(DocumentId parentRowId)
public Builder setParentRowId(final DocumentId parentRowId)
{
this.parentRowId = parentRowId;
return this;
Expand All @@ -489,7 +489,7 @@ public WindowId getWindowId()
return windowId;
}

public Builder setViewType(JSONViewDataType viewType)
public Builder setViewType(final JSONViewDataType viewType)
{
this.viewType = viewType;
return this;
Expand All @@ -500,7 +500,7 @@ public JSONViewDataType getViewType()
return viewType;
}

public Builder setReferencingDocumentPaths(Set<DocumentPath> referencingDocumentPaths)
public Builder setReferencingDocumentPaths(final Set<DocumentPath> referencingDocumentPaths)
{
this.referencingDocumentPaths = referencingDocumentPaths;
return this;
Expand Down

0 comments on commit 29bd1a3

Please sign in to comment.