Skip to content

Commit

Permalink
Fix missing type variable
Browse files Browse the repository at this point in the history
  • Loading branch information
romildo committed Oct 9, 2016
1 parent ab23d66 commit 0e5f09a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/javaslang/render/text/PrettyPrinter.java
Expand Up @@ -16,7 +16,7 @@ public static <T> String pp(Tree<T> tree) {
Objects.requireNonNull(tree, "tree is null");
if (tree.isEmpty()) { return "▣"; }
final StringBuilder builder = new StringBuilder();
prettyPrint((Tree.Node) tree, "", "", builder);
prettyPrint((Tree.Node<T>) tree, "", "", builder);
return builder.toString();
}

Expand Down

0 comments on commit 0e5f09a

Please sign in to comment.