Skip to content

Commit 67510c5

Browse files
committed
cleanup
1 parent b208f8e commit 67510c5

2 files changed

Lines changed: 1 addition & 8 deletions

File tree

jjava-jupyter/src/main/java/org/dflib/jjava/jupyter/kernel/comm/CommTarget.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
@FunctionalInterface
77
public interface CommTarget {
8-
8+
99
/**
1010
* Create a new comm as a result of the frontend making a {@code comm_open} request. This
1111
* is designed to be a constructor reference to a class that extends {@link Comm} overriding

jjava-jupyter/src/main/java/org/dflib/jjava/jupyter/kernel/history/HistoryEntry.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,6 @@ public class HistoryEntry {
1212
*/
1313
protected final String output;
1414

15-
public HistoryEntry(int session, int cellNumber, String input) {
16-
this.session = session;
17-
this.cellNumber = cellNumber;
18-
this.input = input;
19-
this.output = null;
20-
}
21-
2215
public HistoryEntry(int session, int cellNumber, String input, String output) {
2316
this.session = session;
2417
this.cellNumber = cellNumber;

0 commit comments

Comments
 (0)