mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-31 04:51:40 +07:00
1c84c9bef2
GitOrigin-RevId: 0218fd86bb09eea638be20dd96bd248ce498a399
12 lines
271 B
Java
12 lines
271 B
Java
public class SplitCondition {
|
|
private static void appendString(String phrase) {
|
|
if (phrase != null) {
|
|
if (phrase.contains("abc")) {
|
|
System.out.println("abc!");
|
|
}
|
|
} else {
|
|
System.out.println("null");
|
|
}
|
|
}
|
|
}
|