mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
[FIX] NPE в LauncherUpdateController
This commit is contained in:
parent
6e02b80b50
commit
dc7e075789
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ public void postDiff(UpdateRequest request, UpdateRequestEvent e, HashedDir.Diff
|
||||||
}
|
}
|
||||||
public Path tryFind(NewLauncherSettings.HashedStoreEntry en, HashedFile file) throws IOException
|
public Path tryFind(NewLauncherSettings.HashedStoreEntry en, HashedFile file) throws IOException
|
||||||
{
|
{
|
||||||
AtomicReference<Path> ret = null;
|
AtomicReference<Path> ret = new AtomicReference<>(null);
|
||||||
en.hdir.walk(File.separator, (path, name, entry) -> {
|
en.hdir.walk(File.separator, (path, name, entry) -> {
|
||||||
if(entry.getType() == HashedEntry.Type.DIR) return HashedDir.WalkAction.CONTINUE;
|
if(entry.getType() == HashedEntry.Type.DIR) return HashedDir.WalkAction.CONTINUE;
|
||||||
HashedFile tfile = (HashedFile) entry;
|
HashedFile tfile = (HashedFile) entry;
|
||||||
|
|
Loading…
Reference in a new issue