ConfigUtilTest: Remove unnecessary setting of variable to null

Change-Id: Ibf92b19a95cf32199e147ea445e421b736432a87
This commit is contained in:
David Pursehouse
2016-02-12 19:03:10 +09:00
parent d0007a9c4e
commit e95781d467

View File

@@ -67,9 +67,7 @@ public class ConfigUtilTest {
i.bd = true;
i.s = "foo";
i.sd = "bar";
// This line is not needed, as it's null per default.
// Put it here to be explicit.
i.nd = null;
// i.nd = null; // Don't need to explicitly set it; it's null by default
i.t = Theme.DEFAULT;
i.td = Theme.DEFAULT;
return i;