File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
codegen/src/main/java/software/amazon/awssdk/codegen Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -291,7 +291,7 @@ private void setSimpleMethods(IntermediateModel model) {
291
291
config .getExcludedSimpleMethods ().stream ().noneMatch (m -> m .equals ("*" )) ||
292
292
!config .getBlacklistedSimpleMethods ().contains (methodName ) ||
293
293
config .getBlacklistedSimpleMethods ().stream ().noneMatch (m -> m .equals ("*" ));
294
- boolean methodHasNoRequiredMembers = ! CollectionUtils .isNullOrEmpty (inputShape .getRequired ());
294
+ boolean methodHasNoRequiredMembers = CollectionUtils .isNullOrEmpty (inputShape .getRequired ());
295
295
boolean methodIsNotStreaming = !operation .isStreaming ();
296
296
boolean methodHasSimpleMethodVerb = methodName .matches (Constant .APPROVED_SIMPLE_METHOD_VERBS );
297
297
You can’t perform that action at this time.
0 commit comments