langtools/test/jdk/javadoc/tool/T4696488.java
changeset 45417 f7479ee8de69
parent 40310 a979695d72a1
--- a/langtools/test/jdk/javadoc/tool/T4696488.java	Sat Jun 03 02:45:43 2017 +0000
+++ b/langtools/test/jdk/javadoc/tool/T4696488.java	Mon Jun 05 13:45:34 2017 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2017, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -30,7 +30,7 @@
  * @run main T4696488 T4696488.java
  */
 
-import jdk.javadoc.internal.doclets.toolkit.Configuration;
+import jdk.javadoc.internal.doclets.toolkit.BaseConfiguration;
 
 public class T4696488 {
 
@@ -49,7 +49,7 @@
     }
 
     private static void assertAddTrailingFileSep(String input, String expectedOutput) {
-        String output = Configuration.addTrailingFileSep(input);
+        String output = BaseConfiguration.addTrailingFileSep(input);
         if (!expectedOutput.equals(output)) {
             throw new Error("expected " + expectedOutput + " but was " + output);
         }