apply plugin retrolambda

This commit is contained in:
hyb1996
2017-10-19 15:34:51 +08:00
parent 7c4f3b37a3
commit 4b43434b25
54 changed files with 707 additions and 778 deletions

View File

@@ -3,7 +3,7 @@ package com.stardust.util;
import android.app.Activity;
import android.content.res.AssetManager;
import com.stardust.pio.PFile;
import com.stardust.pio.PFiles;
/**
* Created by Stardust on 2017/3/14.
@@ -19,7 +19,7 @@ public class AssetsCache {
return cache.get(path, new SimpleCache.Supplier<String>() {
@Override
public String get(String key) {
return PFile.readAsset(assetManager, path);
return PFiles.readAsset(assetManager, path);
}
});
}