[Trunk | Admin Tools Library Service]: [Bug fix] PageService.java: Error (by accident) in name of "getPageByPortalTypeAndRoute()" method.

This commit is contained in:
Konstantina Galouni 2020-04-03 20:35:19 +00:00
parent 011628562d
commit b12d839964
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ public class PageService {
return pageDAO.findByPortalType(portalType);
}
public Page getPageByPortalTypeAndRoutegetPageByPortalTypeAndRoute(String portalType, String page_route) {
public Page getPageByPortalTypeAndRoute(String portalType, String page_route) {
if (page_route == null || portalType == null) {
return null;
}