Add type parameters for raw type casts where it's safe

GitOrigin-RevId: 49c3dd961c5c7122d6644b7e4959d0e86ad271da
This commit is contained in:
Tagir Valeev
2021-10-01 13:10:25 +07:00
committed by intellij-monorepo-bot
parent 02b5be6d11
commit 81d730447a
289 changed files with 468 additions and 468 deletions

View File

@@ -25,7 +25,7 @@ public class PythonFrameworkSupportConfigurable extends FrameworkSupportConfigur
mySdkComboBox = new PythonSdkComboBox();
mySdkComboBox.setProject(model.getProject());
myMainPanel = LabeledComponent.create(mySdkComboBox, PyBundle.message("framework.support.python.sdk.combobox.label"));
((LabeledComponent)myMainPanel).setLabelLocation(BorderLayout.WEST);
((LabeledComponent<?>)myMainPanel).setLabelLocation(BorderLayout.WEST);
}
@Override