Skip to content

Commit 3b6eb69

Browse files
author
Vincent Potucek
committed
new step to expand java wildcard imports diffplug#2744 diffplug#2594
1 parent 9e774e4 commit 3b6eb69

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package com.diffplug.spotless.glue.javaparser;
16+
package com.diffplug.spotless.glue.java.parser;
1717

1818
import static java.util.stream.Collectors.joining;
1919
import static java.util.stream.Collectors.toMap;

lib/src/main/java/com/diffplug/spotless/java/ExpandWildcardImportsStep.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public State(Collection<File> typeSolverClasspath, JarState jarState) {
7373
FormatterFunc toFormatter() {
7474
try {
7575
Class<?> formatterFunc = jarState.getClassLoader()
76-
.loadClass("com.diffplug.spotless.glue.javaparser.ExpandWildcardsFormatterFunc");
76+
.loadClass("com.diffplug.spotless.glue.java.parser.ExpandWildcardsFormatterFunc");
7777
Constructor<?> constructor = formatterFunc.getConstructor(Collection.class);
7878
return (FormatterFunc) constructor.newInstance(typeSolverClasspath);
7979
} catch (ClassNotFoundException | NoSuchMethodException | InvocationTargetException

0 commit comments

Comments
 (0)