Skip to content

Commit

Permalink
fix: npe
Browse files Browse the repository at this point in the history
resolves #5318
  • Loading branch information
jeremylong committed Jan 18, 2023
1 parent be9719f commit 71ffdcf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ private void processDependencies(JsonObject json, File baseDir, File rootFile,
continue;
}

version = jo.getString("version");
version = jo.getString("version", "");
optional = jo.getBoolean("optional", false);
isDev = jo.getBoolean("dev", false);
} else {
Expand Down

0 comments on commit 71ffdcf

Please sign in to comment.