From e1d02d1ea5e471f0d7809d4660d3580839acefcb Mon Sep 17 00:00:00 2001 From: Justine Tunney Date: Fri, 5 Aug 2016 09:43:06 -0700 Subject: [PATCH] Make ConfigUtils public So users can reference it from other places. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=129450838 --- java/google/registry/config/ConfigUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/google/registry/config/ConfigUtils.java b/java/google/registry/config/ConfigUtils.java index ebb667fa7..dcef83ee8 100644 --- a/java/google/registry/config/ConfigUtils.java +++ b/java/google/registry/config/ConfigUtils.java @@ -18,14 +18,14 @@ import java.net.MalformedURLException; import java.net.URL; /** Helper methods for configuration classes. */ -final class ConfigUtils { +public final class ConfigUtils { /** * Creates a URL instance. * * @throws RuntimeException to rethrow {@link MalformedURLException} */ - static URL makeUrl(String url) { + public static URL makeUrl(String url) { try { return new URL(url); } catch (MalformedURLException e) {