From 0fdd2164fab58e08bb0399628d49af2c4356eb7c Mon Sep 17 00:00:00 2001 From: Roman Ivanov Date: Sat, 20 Jun 2015 13:08:51 -0700 Subject: [PATCH] fix for eclipse warning --- .../com/puppycrawl/tools/checkstyle/gui/ParseTreeModel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/puppycrawl/tools/checkstyle/gui/ParseTreeModel.java b/src/main/java/com/puppycrawl/tools/checkstyle/gui/ParseTreeModel.java index 1468e9a12..b50b0ba6d 100644 --- a/src/main/java/com/puppycrawl/tools/checkstyle/gui/ParseTreeModel.java +++ b/src/main/java/com/puppycrawl/tools/checkstyle/gui/ParseTreeModel.java @@ -52,7 +52,7 @@ public class ParseTreeModel extends AbstractTreeTableModel { final Object[] path = {root}; // no need to setup remaining info, as the call results in a // table structure changed event anyway - we just pass nulls - fireTreeStructureChanged(this, path, null, null); + fireTreeStructureChanged(this, path, null, (Object[])null); } @Override