File tree 1 file changed +1
-4
lines changed
assistant/src/main/java/com/ibm/watson/assistant/v1/model
1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -61,12 +61,10 @@ public Builder() {}
61
61
* Instantiates a new builder with required properties.
62
62
*
63
63
* @param entity the entity
64
- * @param location the location
65
64
* @param value the value
66
65
*/
67
- public Builder (String entity , List < Long > location , String value ) {
66
+ public Builder (String entity , String value ) {
68
67
this .entity = entity ;
69
- this .location = location ;
70
68
this .value = value ;
71
69
}
72
70
@@ -226,7 +224,6 @@ public Builder role(RuntimeEntityRole role) {
226
224
227
225
protected RuntimeEntity (Builder builder ) {
228
226
com .ibm .cloud .sdk .core .util .Validator .notNull (builder .entity , "entity cannot be null" );
229
- com .ibm .cloud .sdk .core .util .Validator .notNull (builder .location , "location cannot be null" );
230
227
com .ibm .cloud .sdk .core .util .Validator .notNull (builder .value , "value cannot be null" );
231
228
entity = builder .entity ;
232
229
location = builder .location ;
You can’t perform that action at this time.
0 commit comments