Skip to content

Commit 8e3238e

Browse files
committed
Fix passing null to ImportResult while importing
1 parent 1ba2f9f commit 8e3238e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/hydev/mcpm/client/export/ImportInteractor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public ImportResult importPlugins(String input) throws ImportException {
3232
})))
3333
.collect(Pair.toMap());
3434

35-
return new ImportResult(null); // install borked for now
35+
return new ImportResult(results);
3636
} catch (JsonProcessingException e) {
3737
throw new ImportException(e);
3838
}

0 commit comments

Comments
 (0)