View Javadoc
1   /*
2   IllegalInstantiation
3   classes = jaaa.lnng.Boolean,jaaa.lnng.String
4   tokens = (default)CLASS_DEF
5   
6   
7   */
8   
9   package com.puppycrawl.tools.checkstyle.checks.coding.illegalinstantiation;
10  
11  class InputIllegalInstantiationLang3 {
12      Boolean obj = new Boolean(true);
13      Integer obj2 = new Integer(0);
14  }