Skip to content

Commit d242572

Browse files
committed
Regenerate
1 parent 8e29257 commit d242572

File tree

34 files changed

+305
-609
lines changed

34 files changed

+305
-609
lines changed

test/vanilla/src/main/java/fixtures/bodyarray/implementation/ArraysImpl.java

Lines changed: 49 additions & 98 deletions
Large diffs are not rendered by default.

test/vanilla/src/main/java/fixtures/bodyboolean/implementation/BoolsImpl.java

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,7 @@ public Maybe<Boolean> getTrueAsync() {
133133
public Maybe<Boolean> apply(BodyResponse<Boolean> res) {
134134
return res.body() == null ? Maybe.<Boolean>empty() : Maybe.just(res.body());
135135
}
136-
}
137-
);
136+
});
138137
}
139138

140139
/**
@@ -226,8 +225,7 @@ public Maybe<Boolean> getFalseAsync() {
226225
public Maybe<Boolean> apply(BodyResponse<Boolean> res) {
227226
return res.body() == null ? Maybe.<Boolean>empty() : Maybe.just(res.body());
228227
}
229-
}
230-
);
228+
});
231229
}
232230

233231
/**
@@ -319,8 +317,7 @@ public Maybe<Boolean> getNullAsync() {
319317
public Maybe<Boolean> apply(BodyResponse<Boolean> res) {
320318
return res.body() == null ? Maybe.<Boolean>empty() : Maybe.just(res.body());
321319
}
322-
}
323-
);
320+
});
324321
}
325322

326323
/**
@@ -365,7 +362,6 @@ public Maybe<Boolean> getInvalidAsync() {
365362
public Maybe<Boolean> apply(BodyResponse<Boolean> res) {
366363
return res.body() == null ? Maybe.<Boolean>empty() : Maybe.just(res.body());
367364
}
368-
}
369-
);
365+
});
370366
}
371367
}

test/vanilla/src/main/java/fixtures/bodybyte/implementation/BytesImpl.java

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,7 @@ public Maybe<byte[]> getNullAsync() {
128128
public Maybe<byte[]> apply(BodyResponse<byte[]> res) {
129129
return res.body() == null ? Maybe.<byte[]>empty() : Maybe.just(res.body());
130130
}
131-
}
132-
);
131+
});
133132
}
134133

135134
/**
@@ -174,8 +173,7 @@ public Maybe<byte[]> getEmptyAsync() {
174173
public Maybe<byte[]> apply(BodyResponse<byte[]> res) {
175174
return res.body() == null ? Maybe.<byte[]>empty() : Maybe.just(res.body());
176175
}
177-
}
178-
);
176+
});
179177
}
180178

181179
/**
@@ -220,8 +218,7 @@ public Maybe<byte[]> getNonAsciiAsync() {
220218
public Maybe<byte[]> apply(BodyResponse<byte[]> res) {
221219
return res.body() == null ? Maybe.<byte[]>empty() : Maybe.just(res.body());
222220
}
223-
}
224-
);
221+
});
225222
}
226223

227224
/**
@@ -316,7 +313,6 @@ public Maybe<byte[]> getInvalidAsync() {
316313
public Maybe<byte[]> apply(BodyResponse<byte[]> res) {
317314
return res.body() == null ? Maybe.<byte[]>empty() : Maybe.just(res.body());
318315
}
319-
}
320-
);
316+
});
321317
}
322318
}

test/vanilla/src/main/java/fixtures/bodycomplex/implementation/ArraysImpl.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,7 @@ public Maybe<ArrayWrapper> getValidAsync() {
130130
public Maybe<ArrayWrapper> apply(BodyResponse<ArrayWrapper> res) {
131131
return res.body() == null ? Maybe.<ArrayWrapper>empty() : Maybe.just(res.body());
132132
}
133-
}
134-
);
133+
});
135134
}
136135

137136
/**
@@ -227,8 +226,7 @@ public Maybe<ArrayWrapper> getEmptyAsync() {
227226
public Maybe<ArrayWrapper> apply(BodyResponse<ArrayWrapper> res) {
228227
return res.body() == null ? Maybe.<ArrayWrapper>empty() : Maybe.just(res.body());
229228
}
230-
}
231-
);
229+
});
232230
}
233231

234232
/**
@@ -324,7 +322,6 @@ public Maybe<ArrayWrapper> getNotProvidedAsync() {
324322
public Maybe<ArrayWrapper> apply(BodyResponse<ArrayWrapper> res) {
325323
return res.body() == null ? Maybe.<ArrayWrapper>empty() : Maybe.just(res.body());
326324
}
327-
}
328-
);
325+
});
329326
}
330327
}

test/vanilla/src/main/java/fixtures/bodycomplex/implementation/BasicsImpl.java

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,7 @@ public Maybe<Basic> getValidAsync() {
136136
public Maybe<Basic> apply(BodyResponse<Basic> res) {
137137
return res.body() == null ? Maybe.<Basic>empty() : Maybe.just(res.body());
138138
}
139-
}
140-
);
139+
});
141140
}
142141

143142
/**
@@ -233,8 +232,7 @@ public Maybe<Basic> getInvalidAsync() {
233232
public Maybe<Basic> apply(BodyResponse<Basic> res) {
234233
return res.body() == null ? Maybe.<Basic>empty() : Maybe.just(res.body());
235234
}
236-
}
237-
);
235+
});
238236
}
239237

240238
/**
@@ -279,8 +277,7 @@ public Maybe<Basic> getEmptyAsync() {
279277
public Maybe<Basic> apply(BodyResponse<Basic> res) {
280278
return res.body() == null ? Maybe.<Basic>empty() : Maybe.just(res.body());
281279
}
282-
}
283-
);
280+
});
284281
}
285282

286283
/**
@@ -325,8 +322,7 @@ public Maybe<Basic> getNullAsync() {
325322
public Maybe<Basic> apply(BodyResponse<Basic> res) {
326323
return res.body() == null ? Maybe.<Basic>empty() : Maybe.just(res.body());
327324
}
328-
}
329-
);
325+
});
330326
}
331327

332328
/**
@@ -371,7 +367,6 @@ public Maybe<Basic> getNotProvidedAsync() {
371367
public Maybe<Basic> apply(BodyResponse<Basic> res) {
372368
return res.body() == null ? Maybe.<Basic>empty() : Maybe.just(res.body());
373369
}
374-
}
375-
);
370+
});
376371
}
377372
}

test/vanilla/src/main/java/fixtures/bodycomplex/implementation/DictionarysImpl.java

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,7 @@ public Maybe<DictionaryWrapper> getValidAsync() {
135135
public Maybe<DictionaryWrapper> apply(BodyResponse<DictionaryWrapper> res) {
136136
return res.body() == null ? Maybe.<DictionaryWrapper>empty() : Maybe.just(res.body());
137137
}
138-
}
139-
);
138+
});
140139
}
141140

142141
/**
@@ -232,8 +231,7 @@ public Maybe<DictionaryWrapper> getEmptyAsync() {
232231
public Maybe<DictionaryWrapper> apply(BodyResponse<DictionaryWrapper> res) {
233232
return res.body() == null ? Maybe.<DictionaryWrapper>empty() : Maybe.just(res.body());
234233
}
235-
}
236-
);
234+
});
237235
}
238236

239237
/**
@@ -329,8 +327,7 @@ public Maybe<DictionaryWrapper> getNullAsync() {
329327
public Maybe<DictionaryWrapper> apply(BodyResponse<DictionaryWrapper> res) {
330328
return res.body() == null ? Maybe.<DictionaryWrapper>empty() : Maybe.just(res.body());
331329
}
332-
}
333-
);
330+
});
334331
}
335332

336333
/**
@@ -375,7 +372,6 @@ public Maybe<DictionaryWrapper> getNotProvidedAsync() {
375372
public Maybe<DictionaryWrapper> apply(BodyResponse<DictionaryWrapper> res) {
376373
return res.body() == null ? Maybe.<DictionaryWrapper>empty() : Maybe.just(res.body());
377374
}
378-
}
379-
);
375+
});
380376
}
381377
}

test/vanilla/src/main/java/fixtures/bodycomplex/implementation/InheritancesImpl.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,7 @@ public Maybe<Siamese> getValidAsync() {
115115
public Maybe<Siamese> apply(BodyResponse<Siamese> res) {
116116
return res.body() == null ? Maybe.<Siamese>empty() : Maybe.just(res.body());
117117
}
118-
}
119-
);
118+
});
120119
}
121120

122121
/**

test/vanilla/src/main/java/fixtures/bodycomplex/implementation/PolymorphicrecursivesImpl.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,7 @@ public Maybe<Fish> getValidAsync() {
115115
public Maybe<Fish> apply(BodyResponse<Fish> res) {
116116
return res.body() == null ? Maybe.<Fish>empty() : Maybe.just(res.body());
117117
}
118-
}
119-
);
118+
});
120119
}
121120

122121
/**

test/vanilla/src/main/java/fixtures/bodycomplex/implementation/PolymorphismsImpl.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,7 @@ public Maybe<Fish> getValidAsync() {
131131
public Maybe<Fish> apply(BodyResponse<Fish> res) {
132132
return res.body() == null ? Maybe.<Fish>empty() : Maybe.just(res.body());
133133
}
134-
}
135-
);
134+
});
136135
}
137136

138137
/**
@@ -356,8 +355,7 @@ public Maybe<Salmon> getComplicatedAsync() {
356355
public Maybe<Salmon> apply(BodyResponse<Salmon> res) {
357356
return res.body() == null ? Maybe.<Salmon>empty() : Maybe.just(res.body());
358357
}
359-
}
360-
);
358+
});
361359
}
362360

363361
/**

test/vanilla/src/main/java/fixtures/bodycomplex/implementation/PrimitivesImpl.java

Lines changed: 11 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,7 @@ public Maybe<IntWrapper> getIntAsync() {
225225
public Maybe<IntWrapper> apply(BodyResponse<IntWrapper> res) {
226226
return res.body() == null ? Maybe.<IntWrapper>empty() : Maybe.just(res.body());
227227
}
228-
}
229-
);
228+
});
230229
}
231230

232231
/**
@@ -322,8 +321,7 @@ public Maybe<LongWrapper> getLongAsync() {
322321
public Maybe<LongWrapper> apply(BodyResponse<LongWrapper> res) {
323322
return res.body() == null ? Maybe.<LongWrapper>empty() : Maybe.just(res.body());
324323
}
325-
}
326-
);
324+
});
327325
}
328326

329327
/**
@@ -419,8 +417,7 @@ public Maybe<FloatWrapper> getFloatAsync() {
419417
public Maybe<FloatWrapper> apply(BodyResponse<FloatWrapper> res) {
420418
return res.body() == null ? Maybe.<FloatWrapper>empty() : Maybe.just(res.body());
421419
}
422-
}
423-
);
420+
});
424421
}
425422

426423
/**
@@ -516,8 +513,7 @@ public Maybe<DoubleWrapper> getDoubleAsync() {
516513
public Maybe<DoubleWrapper> apply(BodyResponse<DoubleWrapper> res) {
517514
return res.body() == null ? Maybe.<DoubleWrapper>empty() : Maybe.just(res.body());
518515
}
519-
}
520-
);
516+
});
521517
}
522518

523519
/**
@@ -613,8 +609,7 @@ public Maybe<BooleanWrapper> getBoolAsync() {
613609
public Maybe<BooleanWrapper> apply(BodyResponse<BooleanWrapper> res) {
614610
return res.body() == null ? Maybe.<BooleanWrapper>empty() : Maybe.just(res.body());
615611
}
616-
}
617-
);
612+
});
618613
}
619614

620615
/**
@@ -710,8 +705,7 @@ public Maybe<StringWrapper> getStringAsync() {
710705
public Maybe<StringWrapper> apply(BodyResponse<StringWrapper> res) {
711706
return res.body() == null ? Maybe.<StringWrapper>empty() : Maybe.just(res.body());
712707
}
713-
}
714-
);
708+
});
715709
}
716710

717711
/**
@@ -807,8 +801,7 @@ public Maybe<DateWrapper> getDateAsync() {
807801
public Maybe<DateWrapper> apply(BodyResponse<DateWrapper> res) {
808802
return res.body() == null ? Maybe.<DateWrapper>empty() : Maybe.just(res.body());
809803
}
810-
}
811-
);
804+
});
812805
}
813806

814807
/**
@@ -904,8 +897,7 @@ public Maybe<DatetimeWrapper> getDateTimeAsync() {
904897
public Maybe<DatetimeWrapper> apply(BodyResponse<DatetimeWrapper> res) {
905898
return res.body() == null ? Maybe.<DatetimeWrapper>empty() : Maybe.just(res.body());
906899
}
907-
}
908-
);
900+
});
909901
}
910902

911903
/**
@@ -1001,8 +993,7 @@ public Maybe<Datetimerfc1123Wrapper> getDateTimeRfc1123Async() {
1001993
public Maybe<Datetimerfc1123Wrapper> apply(BodyResponse<Datetimerfc1123Wrapper> res) {
1002994
return res.body() == null ? Maybe.<Datetimerfc1123Wrapper>empty() : Maybe.just(res.body());
1003995
}
1004-
}
1005-
);
996+
});
1006997
}
1007998

1008999
/**
@@ -1098,8 +1089,7 @@ public Maybe<DurationWrapper> getDurationAsync() {
10981089
public Maybe<DurationWrapper> apply(BodyResponse<DurationWrapper> res) {
10991090
return res.body() == null ? Maybe.<DurationWrapper>empty() : Maybe.just(res.body());
11001091
}
1101-
}
1102-
);
1092+
});
11031093
}
11041094

11051095
/**
@@ -1195,8 +1185,7 @@ public Maybe<ByteWrapper> getByteAsync() {
11951185
public Maybe<ByteWrapper> apply(BodyResponse<ByteWrapper> res) {
11961186
return res.body() == null ? Maybe.<ByteWrapper>empty() : Maybe.just(res.body());
11971187
}
1198-
}
1199-
);
1188+
});
12001189
}
12011190

12021191
/**

test/vanilla/src/main/java/fixtures/bodycomplex/implementation/ReadonlypropertysImpl.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,7 @@ public Maybe<ReadonlyObj> getValidAsync() {
115115
public Maybe<ReadonlyObj> apply(BodyResponse<ReadonlyObj> res) {
116116
return res.body() == null ? Maybe.<ReadonlyObj>empty() : Maybe.just(res.body());
117117
}
118-
}
119-
);
118+
});
120119
}
121120

122121
/**

0 commit comments

Comments
 (0)