Skip to content

Commit

Permalink
chore: Fix invalid API annotations (#6714)
Browse files Browse the repository at this point in the history
  • Loading branch information
tpasternak authored Sep 4, 2024
1 parent a5299e3 commit 50d87bf
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import com.intellij.openapi.util.ThrowableComputable;
import com.jetbrains.cidr.execution.debugger.CidrDebugProcess;

// #api242
// #api241
public class CidrDebugProcessCreator {
public static CidrDebugProcess create(ThrowableComputable<CidrDebugProcess, ExecutionException> creator) throws ExecutionException {
return creator.compute();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import com.intellij.openapi.util.ThrowableComputable;
import com.jetbrains.cidr.execution.debugger.CidrDebugProcess;

// #api242
// #api241
public class CidrDebugProcessCreator {
public static CidrDebugProcess create(ThrowableComputable<CidrDebugProcess, ExecutionException> creator) throws ExecutionException {
return creator.compute();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import com.intellij.openapi.util.ThrowableComputable;
import com.jetbrains.cidr.execution.debugger.CidrDebugProcess;

// #api242
// #api241
public class CidrDebugProcessCreator {
public static CidrDebugProcess create(ThrowableComputable<CidrDebugProcess, ExecutionException> creator) throws ExecutionException {
return creator.compute();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import com.intellij.openapi.util.ThrowableComputable;
import com.jetbrains.cidr.execution.debugger.CidrDebugProcess;

// #api242
// #api241
public class CidrDebugProcessCreator {
public static CidrDebugProcess create(ThrowableComputable<CidrDebugProcess, ExecutionException> creator) throws ExecutionException {
return creator.compute();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import com.intellij.openapi.util.ThrowableComputable;
import com.jetbrains.cidr.execution.debugger.CidrDebugProcess;

// #api242
// #api241
public class CidrDebugProcessCreator {
public static CidrDebugProcess create(ThrowableComputable<CidrDebugProcess, ExecutionException> creator) throws ExecutionException {
return creator.compute();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import com.jetbrains.cidr.execution.CidrCoroutineHelper;
import com.jetbrains.cidr.execution.debugger.CidrDebugProcess;

// #api242
// #api241
public class CidrDebugProcessCreator {
public static CidrDebugProcess create(ThrowableComputable<CidrDebugProcess, ExecutionException> creator) throws ExecutionException {
return CidrCoroutineHelper.runOnEDT(creator);
Expand Down

0 comments on commit 50d87bf

Please sign in to comment.