Minor. Fix compilation after raw types introduction
- Condition parameter loaded as SAM-adapter - Use wildcards instead of raw
This commit is contained in:
@@ -66,7 +66,7 @@ public class KotlinJavaScriptLibraryManager private constructor(private var myPr
|
|||||||
override fun rootsChanged(event: ModuleRootEvent) {
|
override fun rootsChanged(event: ModuleRootEvent) {
|
||||||
if (myMuted.get()) return
|
if (myMuted.get()) return
|
||||||
|
|
||||||
ApplicationManager.getApplication().invokeLater({
|
ApplicationManager.getApplication().invokeLater(Runnable {
|
||||||
DumbService.getInstance(myProject!!).runWhenSmart() { updateProjectLibrary() }
|
DumbService.getInstance(myProject!!).runWhenSmart() { updateProjectLibrary() }
|
||||||
}, ModalityState.NON_MODAL, myProject!!.getDisposed())
|
}, ModalityState.NON_MODAL, myProject!!.getDisposed())
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -100,7 +100,7 @@ public class JetCallableDefinitionUsage<T extends PsiElement> extends JetUsageIn
|
|||||||
}
|
}
|
||||||
|
|
||||||
@NotNull
|
@NotNull
|
||||||
public JetCallableDefinitionUsage getBaseFunction() {
|
public JetCallableDefinitionUsage<?> getBaseFunction() {
|
||||||
return baseFunction;
|
return baseFunction;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user