KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > puppycrawl > tools > checkstyle > indentation > InputUseTabs


1 /*
2  * InputUseTabs.java
3  *
4  * Created on December 24, 2002, 10:28 PM
5  */

6
7 package com.puppycrawl.tools.checkstyle.indentation;
8
9 /**
10  *
11  * @author jrichard
12  */

13 public class InputUseTabs {
14     
15     /** Creates a new instance of InputUseTabs */
16     public InputUseTabs() {
17         boolean test = true;
18         if (test)
19         {
20             while (
21                 test == false) {
22                 System.exit(2);
23             }
24         }
25          System.exit(3);
26     }
27     
28 }
29
Popular Tags