Merge commit 'ee2cf21efc8cf43fa2334a23e7437f1ccd646fbe' into develop

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

View File

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