mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-06-28 13:16:19 +08:00
🎨 修复代码
This commit is contained in:
parent
14dfe30bf6
commit
4bd5b3cf56
@ -235,8 +235,10 @@ public class WxOpenInMemoryConfigStorage implements WxOpenConfigStorage {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static class WxOpenInnerConfigStorage implements WxMpConfigStorage, WxMaConfig {
|
private static class WxOpenInnerConfigStorage implements WxMpConfigStorage, WxMaConfig {
|
||||||
private WxOpenConfigStorage wxOpenConfigStorage;
|
private final WxOpenConfigStorage wxOpenConfigStorage;
|
||||||
private String appId;
|
private final String appId;
|
||||||
|
private WxMpHostConfig hostConfig;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 小程序原始ID
|
* 小程序原始ID
|
||||||
*/
|
*/
|
||||||
@ -527,7 +529,12 @@ public class WxOpenInMemoryConfigStorage implements WxOpenConfigStorage {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public WxMpHostConfig getHostConfig() {
|
public WxMpHostConfig getHostConfig() {
|
||||||
return null;
|
return this.hostConfig;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setHostConfig(WxMpHostConfig hostConfig) {
|
||||||
|
this.hostConfig = hostConfig;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user