19 lines
716 B
Java
19 lines
716 B
Java
package com.gh.flutter;
|
|
|
|
import com.gh.common.filter.RegionSettingHelper;
|
|
|
|
import me.ele.lancet.base.annotations.Insert;
|
|
import me.ele.lancet.base.annotations.TargetClass;
|
|
|
|
public class FlutterRegionSettingServiceImplAop {
|
|
private static final String TARGET_CLASS =
|
|
FlutterConstants.SERVICE_PACKAGE + ".FlutterRegionSettingServiceImpl";
|
|
private static final String METHOD_SHOULD_THIS_GAME_DISPLAY_MIRROR_INFO = "shouldThisGameDisplayMirrorInfo";
|
|
|
|
@TargetClass(TARGET_CLASS)
|
|
@Insert(METHOD_SHOULD_THIS_GAME_DISPLAY_MIRROR_INFO)
|
|
public boolean shouldThisGameDisplayMirrorInfo(String gameId) {
|
|
return RegionSettingHelper.INSTANCE.shouldThisGameDisplayMirrorInfo(gameId);
|
|
}
|
|
}
|