summaryrefslogtreecommitdiffstats
path: root/vespalog/src/main/java/com/yahoo/log/LogUtil.java
blob: e803ee481567e3864bcc1b7c8862bdd88a780aaa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.log;

/**
 * @author lulf
 * @since 5.1
 */
class LogUtil {
    static boolean empty(String s) {
        return (s == null || s.equals(""));
    }
}