Skip to content

Commit

Permalink
remove async delay from vfs fileloader
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed Oct 4, 2024
1 parent 733aa25 commit 0856d01
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,17 +83,17 @@ public void loadData(final Priority priority, DataCallback<? super java.io.Input
try
{

if (priority == Priority.LOW)
{
//if (priority == Priority.LOW)
//{
// Log.i(TAG, "loadData:Priority.LOW");
try
{
Thread.sleep(20); // sleep 0.02s
}
catch (Exception e)
{
}
}
//try
//{
// Thread.sleep(20); // sleep 0.02s
//}
//catch (Exception e)
//{
//}
//}
// else if (priority == Priority.NORMAL)
// {
// // Log.i(TAG, "loadData:Priority.NORMAL");
Expand Down

0 comments on commit 0856d01

Please sign in to comment.