mirror of
https://github.com/tiennm99/lombok.git
synced 2026-06-02 06:10:37 +00:00
@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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user