Skip to content

Commit

Permalink
Fix usage of Class.getCanonicalName to Class.getName
Browse files Browse the repository at this point in the history
  • Loading branch information
ewencp committed May 19, 2017
1 parent 2e05711 commit 93bad0a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -55,7 +55,7 @@ public static SinkRecord requireSinkRecord(ConnectRecord<?> record, String purpo
}

private static String nullSafeClassName(Object x) {
return x == null ? "null" : x.getClass().getCanonicalName();
return x == null ? "null" : x.getClass().getName();
}

}

0 comments on commit 93bad0a

Please sign in to comment.