Exclude data from PluginMessageEvent.toString

This commit is contained in:
Cory Ory 2016-07-18 13:33:48 +10:00 committed by md_5
parent a05e695db9
commit b5121db886

View File

@ -10,7 +10,7 @@ import net.md_5.bungee.api.plugin.Cancellable;
* Event called when a plugin message is sent to the client or server. * Event called when a plugin message is sent to the client or server.
*/ */
@Data @Data
@ToString(callSuper = true) @ToString(callSuper = true, exclude = "data")
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
public class PluginMessageEvent extends TargetedEvent implements Cancellable public class PluginMessageEvent extends TargetedEvent implements Cancellable
{ {