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

Make a few classes final

parent 13f975b2
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@ import com.google.inject.Stage;
import io.github.spencerpark.jupyter.channels.JupyterConnection;
import io.github.spencerpark.jupyter.kernel.KernelConnectionProperties;
public class Main {
public final class Main {
private Main() {
super();
......
......@@ -27,7 +27,7 @@ import io.github.spencerpark.jupyter.messages.DisplayData;
import org.jetbrains.annotations.NotNull;
public class ProBKernel extends BaseKernel {
public final class ProBKernel extends BaseKernel {
private static final Pattern COMMAND_PATTERN = Pattern.compile("\\s*\\:(.*)");
private final @NotNull Map<@NotNull String, @NotNull ReplCommand> commands;
......
......@@ -4,7 +4,7 @@ import com.google.inject.AbstractModule;
import de.prob.MainModule;
public class ProBKernelModule extends AbstractModule {
public final class ProBKernelModule extends AbstractModule {
@Override
protected void configure() {
install(new MainModule());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment