From bdb2eeb3e37f7fa15825c5f9d0e491e892c0f30f Mon Sep 17 00:00:00 2001 From: Jonathan Zak Date: Wed, 18 Dec 2024 13:48:54 -0500 Subject: [PATCH] change isIbmi to public --- .../java/com/github/theprez/manzan/configuration/Config.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/camel/src/main/java/com/github/theprez/manzan/configuration/Config.java b/camel/src/main/java/com/github/theprez/manzan/configuration/Config.java index 783549b..4a484ea 100644 --- a/camel/src/main/java/com/github/theprez/manzan/configuration/Config.java +++ b/camel/src/main/java/com/github/theprez/manzan/configuration/Config.java @@ -15,7 +15,7 @@ public abstract class Config { public static final String DIRECTORY_OVERRIDE_PROPERTY = "manzan.configdir"; public static final String COMPONENT_OPTIONS_PREFIX = "componentOptions."; - protected static boolean isIBMi() { + public static boolean isIBMi() { final String osName = System.getProperty("os.name", "Misty"); return "os400".equalsIgnoreCase(osName) || "os/400".equalsIgnoreCase(osName); }