Skip to content

Commit

Permalink
Remove unnecessary exception for engine constructor
Browse files Browse the repository at this point in the history
The internal engine constructor declares a checked engine exception yet
this constructor does not actually throw this exception. This commit
removes this declaration from the internal engine constructor.

Relates #27022
  • Loading branch information
jasontedor authored Oct 16, 2017
1 parent 70668dd commit 3664ede
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public class InternalEngine extends Engine {
@Nullable
private final String historyUUID;

public InternalEngine(EngineConfig engineConfig) throws EngineException {
public InternalEngine(EngineConfig engineConfig) {
super(engineConfig);
openMode = engineConfig.getOpenMode();
if (engineConfig.isAutoGeneratedIDsOptimizationEnabled() == false) {
Expand Down

0 comments on commit 3664ede

Please sign in to comment.