- Added final keyword wherever possible
- Improved some font code
This commit is contained in:
Ondřej Hruška
2014-04-06 20:53:52 +02:00
parent da67300522
commit e2b6752efb
93 changed files with 805 additions and 743 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ public class Utils {
public static Thread runAsThread(Runnable r)
{
Thread t = new Thread(r);
final Thread t = new Thread(r);
t.start();
return t;
}