From 5b68bfefd610dd786f16f7bbbe38501b2225d20f Mon Sep 17 00:00:00 2001
From: lkuehne
docs missing for:
+
+ Detects inline conditionals. + + An example inline conditional is this: +
+
+String a = getParameter("a");
+String b = (a==null || a.length<1) ? null : a.substring(1);
+
+ + Rationale: Some developers find inline conditionals hard to read, + so their company's coding standards forbids them. +
++ Rationale: Some developers find inline conditionals hard to read, + so their company's coding standards forbids them. +
++ To configure the check: +
++<module name="AvoidInlineConditionals"/> ++
+ com.puppycrawl.tools.checkstyle.checks +
++ TreeWalker +
+