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) {
291291 config .getExcludedSimpleMethods ().stream ().noneMatch (m -> m .equals ("*" )) ||
292292 !config .getBlacklistedSimpleMethods ().contains (methodName ) ||
293293 config .getBlacklistedSimpleMethods ().stream ().noneMatch (m -> m .equals ("*" ));
294- boolean methodHasNoRequiredMembers = ! CollectionUtils .isNullOrEmpty (inputShape .getRequired ());
294+ boolean methodHasNoRequiredMembers = CollectionUtils .isNullOrEmpty (inputShape .getRequired ());
295295 boolean methodIsNotStreaming = !operation .isStreaming ();
296296 boolean methodHasSimpleMethodVerb = methodName .matches (Constant .APPROVED_SIMPLE_METHOD_VERBS );
297297
You can’t perform that action at this time.
0 commit comments