Remove unused code

Strip out the GLFW timer code, since we use our own kitty based
monotonic clock.
This commit is contained in:
Kovid Goyal
2019-12-19 16:27:25 +05:30
parent 2e850a0d0d
commit e142083d53
16 changed files with 5 additions and 339 deletions

View File

@@ -336,8 +336,11 @@ def newer(dest, *sources):
except EnvironmentError:
return True
for s in sources:
if os.path.getmtime(s) >= dtime:
return True
try:
if os.path.getmtime(s) >= dtime:
return True
except FileNotFoundError:
pass
return False