List of usage examples for com.jgoodies.common.base Preconditions checkNotBlank
public static String checkNotBlank(String str, String message)
From source file:com.r4intellij.misc.rinstallcache.LibraryIndexFactory.java
License:BSD License
static String getPackageVersion(String packageName) { String s = CachingUtils.evalRCommandCat("packageDescription('" + packageName + "')$Version"); Preconditions.checkNotBlank(s, "version is empty"); return s;/* ww w . j a va 2s . com*/ }