Commit 60b3cd7 1 parent 7e3e92a commit 60b3cd7 Copy full SHA for 60b3cd7
File tree 1 file changed +5
-5
lines changed
common/core/src/test/java/zingg/common/core/block
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 12
12
import zingg .common .client .ArgumentsUtil ;
13
13
import zingg .common .client .FieldDefinition ;
14
14
import zingg .common .client .IArguments ;
15
- import zingg .common .client .MatchType ;
15
+ import zingg .common .client .IMatchType ;
16
16
import zingg .common .client .MatchTypes ;
17
17
import zingg .common .client .ZFrame ;
18
18
import zingg .common .client .ZinggClientException ;
@@ -70,13 +70,13 @@ private List<FieldDefinition> getFieldDefList() {
70
70
FieldDefinition idFD = new FieldDefinition ();
71
71
idFD .setDataType ("integer" );
72
72
idFD .setFieldName ("id" );
73
- ArrayList <MatchType > matchTypelistId = new ArrayList <MatchType >();
74
- matchTypelistId .add (( MatchType ) MatchTypes .DONT_USE );
73
+ ArrayList <IMatchType > matchTypelistId = new ArrayList <IMatchType >();
74
+ matchTypelistId .add (MatchTypes .DONT_USE );
75
75
idFD .setMatchType (matchTypelistId );
76
76
fdList .add (idFD );
77
77
78
- ArrayList <MatchType > matchTypelistFuzzy = new ArrayList <MatchType >();
79
- matchTypelistFuzzy .add (( MatchType ) MatchTypes .FUZZY );
78
+ ArrayList <IMatchType > matchTypelistFuzzy = new ArrayList <IMatchType >();
79
+ matchTypelistFuzzy .add (MatchTypes .FUZZY );
80
80
81
81
82
82
FieldDefinition yearFD = new FieldDefinition ();
You can’t perform that action at this time.
0 commit comments