rmatharu commented on a change in pull request #1431:
URL: https://github.com/apache/samza/pull/1431#discussion_r491183558
##########
File path:
samza-api/src/main/java/org/apache/samza/table/descriptors/RemoteTableDescriptor.java
##########
@@ -288,7 +289,8 @@ public String getProviderFactoryClassName() {
RateLimiter defaultRateLimiter;
try {
@SuppressWarnings("unchecked")
- Class<? extends RateLimiter> clazz = (Class<? extends RateLimiter>)
Class.forName(DEFAULT_RATE_LIMITER_CLASS_NAME);
+ Class<? extends RateLimiter> clazz =
+ (Class<? extends RateLimiter>)
Class.forName(DEFAULT_RATE_LIMITER_CLASS_NAME);
Review comment:
Please undo indent/superfluous changes like these, it pollutes the git
blame history, also makes it harder to review things.
I believe auto-indent on your IDE may be the culprit here.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]