Move YamlUtils to be under google.registry.util package

This makes it simpler to package google.registry.util as a separate project in
Gradle that can be depended upon by the proxy package. Currently the proxy
package depends on both google.registry.util and google.registry.config.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=221450085
This commit is contained in:
jianglai 2018-11-14 08:41:31 -08:00
parent e51cf3e9c7
commit c0239b0a07
6 changed files with 29 additions and 27 deletions

View file

@ -12,10 +12,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package google.registry.config;
package google.registry.util;
import static com.google.common.truth.Truth.assertThat;
import static google.registry.config.YamlUtils.mergeYaml;
import static google.registry.util.YamlUtils.mergeYaml;
import com.google.common.base.Joiner;
import org.junit.Test;