1
2
3
4
5
6
7
8 package com.puppycrawl.tools.checkstyle.checks.whitespace.singlespaceseparator;
9
10 public class InputSingleSpaceSeparatorCommentsWithEmoji {
11
12
13 String s1 = "🧐😉 assa ";
14 String s2 = "🧐😉" + " " + "assa ";
15 String s3 = "🧐" + "🎄 ";
16 String s4
17 = "da🎄";
18 private void foo(String s) {
19 if (s.equals("🤩🎄") ){
20 foo(s);
21 }
22 }
23
24 String s = "🎄😉";
25 String st = "🎄 assa";
26 String str = "🤩🎄";
27 ; String j = "";
28
29
30
31 void foo2() {
32
33 String s = "🧐 🧐";
34 }
35
36 private void foo3 (String s) {
37
38 if (s.substring(0).equals("da🎄")) {
39
40 if ("🧐".isEmpty()){
41
42 }
43 }
44
45 }
46 }