View Javadoc

1   package ch.qos.logback.core.util;
2   
3   public class SystemInfo {
4   
5     
6     public static String getJavaVendor() {
7       return OptionHelper.getSystemProperty("java.vendor", null);
8     }
9   }