Clean up
- Added final keyword wherever possible - Improved some font code
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user