Removed redundant method

IJ-CR-15114

GitOrigin-RevId: 366aa9b3d0bed860520bbd6b05ab0859f7d26df1
This commit is contained in:
Alexandr Evstigneev
2021-10-11 13:09:16 +03:00
committed by intellij-monorepo-bot
parent 2d09ad3b53
commit dc31def4ec

View File

@@ -1,29 +1,10 @@
/*
* Copyright 2000-2014 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.jetbrains.python.configuration;
import com.intellij.application.options.ModuleAwareProjectConfigurable;
import com.intellij.openapi.application.ApplicationManager;
import com.intellij.openapi.module.Module;
import com.intellij.openapi.module.ModuleManager;
import com.intellij.openapi.options.ConfigurationException;
import com.intellij.openapi.options.UnnamedConfigurable;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.projectRoots.Sdk;
import com.intellij.openapi.roots.ModuleRootManager;
import com.jetbrains.python.PyBundle;
import org.jetbrains.annotations.NotNull;
@@ -45,9 +26,4 @@ public class PyActiveSdkModuleConfigurable extends ModuleAwareProjectConfigurabl
protected UnnamedConfigurable createDefaultProjectConfigurable() {
return new PyActiveSdkConfigurable(myProject);
}
@Override
public void apply() throws ConfigurationException {
super.apply();
}
}