@ToString usage example had a typo in it (used 'excludes' instead of the correct 'exclude'). Thanks to Francois Marot for spotting this problem.

Fixes issue #168.
This commit is contained in:
Reinier Zwitserloot
2010-11-29 17:02:58 +01:00
parent 6ac23f853a
commit 84a74bf638
+1 -1
View File
@@ -1,6 +1,6 @@
import lombok.ToString;
@ToString(excludes="id")
@ToString(exclude="id")
public class ToStringExample {
private static final int STATIC_VAR = 10;
private String name;