1 /* 2 NoWhitespaceAfter 3 allowLineBreaks = (default)true 4 tokens = (default)ARRAY_INIT, AT, INC, DEC, UNARY_MINUS, UNARY_PLUS, BNOT, LNOT, \ 5 DOT, ARRAY_DECLARATOR, INDEX_OP 6 7 8 */ 9 10 package com.puppycrawl.tools.checkstyle.checks.whitespace.nowhitespaceafter; 11 12 public class InputNoWhitespaceAfterTestNpe 13 { 14 private int[] getSome() { 15 return new int[4]; 16 } 17 }