From a80727dc0c4004ff6f4059dc30db741efe34e9f3 Mon Sep 17 00:00:00 2001 From: lepdou Date: Fri, 23 Jun 2017 14:52:19 +0800 Subject: [PATCH] EnvUtils add transform tools env --- .../java/com/ctrip/framework/apollo/core/enums/EnvUtils.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apollo-core/src/main/java/com/ctrip/framework/apollo/core/enums/EnvUtils.java b/apollo-core/src/main/java/com/ctrip/framework/apollo/core/enums/EnvUtils.java index 8ffbbcc0a..3795f4396 100644 --- a/apollo-core/src/main/java/com/ctrip/framework/apollo/core/enums/EnvUtils.java +++ b/apollo-core/src/main/java/com/ctrip/framework/apollo/core/enums/EnvUtils.java @@ -23,6 +23,8 @@ public final class EnvUtils { return Env.DEV; case "LOCAL": return Env.LOCAL; + case "TOOLS": + return Env.TOOLS; default: return null; } -- GitLab