Remove unnecessary exception for engine constructor
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
This commit is contained in:
parent
70668dddf3
commit
3664ede9b5
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue