Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'java'
apply plugin: 'maven'

group = "jupyter"
version = '0.1.0'
version = '0.2.1'

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/jupyter/Displayer.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ public abstract class Displayer<T> {
*
* @param types MIME types that are supported by the kernel
*/
void setMimeTypes(String... types) {
public void setMimeTypes(String... types) {
}
}
2 changes: 1 addition & 1 deletion src/test/java/jupyter/TestMimeTypeNotification.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public Map<String, String> display(String obj) {
}

@Override
void setMimeTypes(String... types) {
public void setMimeTypes(String... types) {
mimeTypes = new HashSet<>(Arrays.asList(types));
}
}
Expand Down