]> source.dussan.org Git - sonarqube.git/blob
dd5f6108917ab1f7bb8b2f1002e61bdfc1061d83
[sonarqube.git] /
1 /*\r
2  * Sonar, entreprise quality control tool.\r
3  * Copyright (C) 2007-2008 Hortis-GRC SA\r
4  * mailto:be_agile HAT hortis DOT ch\r
5  *\r
6  * Sonar is free software; you can redistribute it and/or\r
7  * modify it under the terms of the GNU Lesser General Public\r
8  * License as published by the Free Software Foundation; either\r
9  * version 3 of the License, or (at your option) any later version.\r
10  *\r
11  * Sonar is distributed in the hope that it will be useful,\r
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
14  * Lesser General Public License for more details.\r
15  *\r
16  * You should have received a copy of the GNU Lesser General Public\r
17  * License along with Sonar; if not, write to the Free Software\r
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02\r
19  */\r
20 package org.sonar.samples.duplicated_lines_with_other_package2;\r
21 \r
22 public class DuplicatedLinesWithOtherPackage {\r
23 \r
24   public DuplicatedLinesWithOtherPackage() {\r
25   }\r
26 \r
27   public void duplicatedMethodWithOtherPackage() {\r
28     char[] charList = new char[30];\r
29     charList[0] = 'a';\r
30     charList[1] = 'b';\r
31     charList[2] = 'c';\r
32     charList[3] = 'd';\r
33     charList[4] = 'e';\r
34     charList[5] = 'f';\r
35     charList[6] = 'g';\r
36     charList[7] = 'g';\r
37     charList[8] = 'g';\r
38     charList[9] = 'g';\r
39     charList[10] = 'g';\r
40     charList[11] = 'g';\r
41     charList[12] = 'g';\r
42     charList[13] = 'g';\r
43     charList[14] = 'g';\r
44     charList[15] = 'g';\r
45     charList[16] = 'g';\r
46     charList[17] = 'g';\r
47     charList[18] = 'g';\r
48     charList[19] = 'g';\r
49     charList[20] = 'g';\r
50     charList[21] = 'g';\r
51     charList[22] = 'g';\r
52     charList[23] = 'g';\r
53     charList[24] = 'g';\r
54     charList[27] = 'g';\r
55     charList[28] = 'g';\r
56     charList[29] = 'g';\r
57     charList[30] = 'g';\r
58   }\r
59 \r
60 }