gengliangwang commented on a change in pull request #28769:
URL: https://github.com/apache/spark/pull/28769#discussion_r437869878
##########
File path:
common/kvstore/src/main/java/org/apache/spark/util/kvstore/LevelDB.java
##########
@@ -189,7 +198,12 @@ public void delete(Class<?> type, Object naturalKey)
throws Exception {
@Override
public Iterator<T> iterator() {
try {
- return new LevelDBIterator<>(type, LevelDB.this, this);
+ LevelDBIterator<T> iterator = new LevelDBIterator<>(
+ type,
Review comment:
Nit: put all the parameters to one line?
```
LevelDBIterator<T> iterator = new LevelDBIterator<>(type, LevelDB.this,
this);```
----------------------------------------------------------------
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]