Skip to content

Commit

Permalink
Fixed some C&P errors in ModelFieldVisitor.java. No functional change.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/ofbiz/trunk@1687093 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
adrian-crum committed Jun 23, 2015
1 parent 317104a commit 4c12931
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,17 @@ public interface ModelFieldVisitor {

void visit(ContainerField containerField) throws Exception ;

void visit(DateFindField dateTimeField) throws Exception ;
void visit(DateFindField dateFindField) throws Exception ;

void visit(DateTimeField dateTimeField) throws Exception ;

void visit(DisplayEntityField displayField) throws Exception ;
void visit(DisplayEntityField displayEntityField) throws Exception ;

void visit(DisplayField displayField) throws Exception ;

void visit(DropDownField dropDownField) throws Exception ;

void visit(FileField textField) throws Exception ;
void visit(FileField fileField) throws Exception ;

void visit(FormField formField) throws Exception ;

Expand All @@ -77,15 +77,15 @@ public interface ModelFieldVisitor {

void visit(ImageField imageField) throws Exception ;

void visit(LookupField textField) throws Exception ;
void visit(LookupField lookupField) throws Exception ;

void visit(MenuField menuField) throws Exception ;

void visit(PasswordField textField) throws Exception ;
void visit(PasswordField passwordField) throws Exception ;

void visit(RadioField radioField) throws Exception ;

void visit(RangeFindField textField) throws Exception ;
void visit(RangeFindField rangeFindField) throws Exception ;

void visit(ResetField resetField) throws Exception ;

Expand All @@ -97,5 +97,5 @@ public interface ModelFieldVisitor {

void visit(TextField textField) throws Exception ;

void visit(TextFindField textField) throws Exception ;
void visit(TextFindField textFindField) throws Exception ;
}

0 comments on commit 4c12931

Please sign in to comment.