Skip to content

Commit ad90926

Browse files
committed
Fix checkstyle
1 parent fb4b36f commit ad90926

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

codegen/src/main/java/software/amazon/awssdk/codegen/customization/processors/LongPollingOperationProcessor.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
import software.amazon.awssdk.codegen.model.service.ServiceModel;
3131

3232
// TODO: Remove this when the long polling trait is formalized as a c2j trait.
33+
3334
/**
3435
* Marks specific service operations as having the long polling trait.
3536
*/
@@ -86,7 +87,7 @@ public void postprocess(IntermediateModel intermediateModel) {
8687
log.info("Setting the longPoll trait for {}#{}", serviceId, longPollingOperation);
8788
opModel.setLongPolling(true);
8889
} else {
89-
throw new RuntimeException("Operation " + longPollingOperation + " not found for service " + serviceId);
90+
throw new RuntimeException("Operation " + longPollingOperation + " not found for service " + serviceId);
9091
}
9192
}
9293
}

0 commit comments

Comments
 (0)