sunjincheng121 opened a new pull request #2721:
URL: https://github.com/apache/iotdb/pull/2721
Clean up for redundant throw clause, such as : `StorageEngine#setTTL`.
```
public void setTTL(PartialPath storageGroup, long dataTTL) throws
StorageEngineException {
// storage group has no data
if (!processorMap.containsKey(storageGroup)) {
return;
}
processorMap.get(storageGroup).setTTL(dataTTL);
}
```
`StorageEngineException` is redundant.
----------------------------------------------------------------
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]