Skip to content

Commit

Permalink
fix: remove stray logging (microsoft#435)
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-s committed May 7, 2021
1 parent 7f3ecd8 commit 74bf663
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ static <F, T> T convertViaJson(F f, Class<T> t) {
.registerTypeAdapter(Optional.class, new OptionalSerializer())
.create();
String json = gson.toJson(f);
System.err.println("json = " + json);
return gson.fromJson(json, t);
}

Expand Down

0 comments on commit 74bf663

Please sign in to comment.