Skip to content

Commit

Permalink
removed Null class and replaced with Void
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcus Kaufmann committed Apr 10, 2018
1 parent f5bee76 commit c6a7a70
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ private void setField(Field field, Object value)
Class<?> valueType;
if (value == null)
{
valueType = Null.class;
valueType = Void.class;
}
else
{
Expand Down
6 changes: 0 additions & 6 deletions src/main/java/com/xceptance/neodymium/Null.java

This file was deleted.

0 comments on commit c6a7a70

Please sign in to comment.