mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
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");
|
|
}
|
|
}
|
|
}
|