Description
Refactor DocRouter.java from:
public static DocRouter getDocRouter(Object routerName) {...}
to:
public static DocRouter getDocRouter(String routerName) {
There's really no reason not to accept a routerName as a string.
Refactor DocRouter.java from:
public static DocRouter getDocRouter(Object routerName) {...}
to:
public static DocRouter getDocRouter(String routerName) {
There's really no reason not to accept a routerName as a string.