Replace tabs in java files with spaces
[yangtools.git] / common / checkstyle-logging / src / test / java / org / opendaylight / yangtools / checkstyle / CheckCodingStyleTestClass.java
1 /*\r
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.\r
3  *\r
4  * This program and the accompanying materials are made available under the\r
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
6  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
7  */\r
8 \r
9 package org.opendaylight.yangtools.checkstyle;\r
10 \r
11 import java.util.Comparator;\r
12 import java.util.Map;\r
13 \r
14 import static java.lang.String.CASE_INSENSITIVE_ORDER;\r
15 \r
16 import com.google.common.collect.Maps;\r
17 import com.google.common.collect.Lists;\r
18 \r
19 public class CheckCodingStyleTestClass {\r
20         // NOTE:  This test class contains intentional checkstyle issues\r
21         public CheckCodingStyleTestClass() {\r
22                 Comparator<String> string = CASE_INSENSITIVE_ORDER; \r
23                 \r
24            Map<String, String> map = Maps.newHashMap();\r
25         }\r
26 }\r