1
0
mirror of synced 2025-12-17 21:18:07 +08:00

Merge commit 'ee2cf21efc8cf43fa2334a23e7437f1ccd646fbe' into develop

* commit 'ee2cf21efc8cf43fa2334a23e7437f1ccd646fbe':
  fix: issue #163
This commit is contained in:
ukid
2015-07-09 11:12:49 +08:00

View File

@@ -212,6 +212,11 @@ public class WxMpInMemoryConfigStorage implements WxMpConfigStorage {
@Override @Override
public File getTmpDirFile() { public File getTmpDirFile() {
return this.getTmpDirFile(); return this.tmpDirFile;
} }
public void setTmpDirFile(File tmpDirFile) {
this.tmpDirFile = tmpDirFile;
}
} }