mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-08-23 22:11:40 +08:00
Merge commit 'ee2cf21efc8cf43fa2334a23e7437f1ccd646fbe' into develop
* commit 'ee2cf21efc8cf43fa2334a23e7437f1ccd646fbe': fix: issue #163
This commit is contained in:
commit
a312760d32
@ -192,26 +192,31 @@ public class WxMpInMemoryConfigStorage implements WxMpConfigStorage {
|
|||||||
'}';
|
'}';
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getPartnerId() {
|
public String getPartnerId() {
|
||||||
return partnerId;
|
return partnerId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPartnerId(String partnerId) {
|
public void setPartnerId(String partnerId) {
|
||||||
this.partnerId = partnerId;
|
this.partnerId = partnerId;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getPartnerKey() {
|
public String getPartnerKey() {
|
||||||
return partnerKey;
|
return partnerKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPartnerKey(String partnerKey) {
|
public void setPartnerKey(String partnerKey) {
|
||||||
this.partnerKey = partnerKey;
|
this.partnerKey = partnerKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public File getTmpDirFile() {
|
||||||
|
return this.tmpDirFile;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTmpDirFile(File tmpDirFile) {
|
||||||
|
this.tmpDirFile = tmpDirFile;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public File getTmpDirFile() {
|
|
||||||
return this.getTmpDirFile();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user