Skip to content
Snippets Groups Projects
Commit 5844b876 authored by dgelessus's avatar dgelessus
Browse files

Add placeholders for missing methods in (Let|Unlet)Command

parent ba9562c5
Branches
Tags
No related merge requests found
......@@ -49,6 +49,12 @@ public final class LetCommand implements Command {
return null;
}
@Override
public @Nullable DisplayData inspect(final @NotNull String argString, final int at) {
// TODO
return null;
}
@Override
public @Nullable ReplacementOptions complete(final @NotNull String argString, final int at) {
// TODO
......
......@@ -49,6 +49,12 @@ public final class UnletCommand implements Command {
return null;
}
@Override
public @Nullable DisplayData inspect(final @NotNull String argString, final int at) {
// TODO
return null;
}
@Override
public @Nullable ReplacementOptions complete(final @NotNull String argString, final int at) {
// TODO
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment