Fix compilation
(cherry picked from commit 46b9041)
This commit is contained in:
@@ -33,9 +33,9 @@ class KotlinReportSubmitter : ITNReporter() {
|
||||
private var hasUpdate = false
|
||||
private var hasLatestVersion = false
|
||||
|
||||
override fun showErrorInRelease(event: IdeaLoggingEvent?) = !hasUpdate
|
||||
override fun showErrorInRelease(event: IdeaLoggingEvent) = !hasUpdate
|
||||
|
||||
override fun submit(events: Array<out IdeaLoggingEvent>, additionalInfo: String?, parentComponent: Component, consumer: Consumer<SubmittedReportInfo>): Boolean {
|
||||
override fun submit(events: Array<IdeaLoggingEvent>, additionalInfo: String?, parentComponent: Component, consumer: Consumer<SubmittedReportInfo>): Boolean {
|
||||
if (hasUpdate) {
|
||||
return true
|
||||
}
|
||||
|
||||
+1
-1
@@ -51,7 +51,7 @@ public abstract class AbstractReferenceResolveWithLibTest extends AbstractRefere
|
||||
@Nullable
|
||||
@Override
|
||||
public PsiElement resolve() {
|
||||
return AstAccessControl.INSTANCE.execute(false, myTestRootDisposable, myFixture, new Function0<PsiElement>() {
|
||||
return AstAccessControl.INSTANCE.execute(false, getTestRootDisposable(), myFixture, new Function0<PsiElement>() {
|
||||
@Override
|
||||
public PsiElement invoke() {
|
||||
return reference.resolve();
|
||||
|
||||
Reference in New Issue
Block a user