Summary: public This model does not seem to bring anything anymore. Useless because ... Reviewed By: cristianoc Differential Revision: D2920118 fb-gh-sync-id: 7f708d7 shipit-source-id: 7f708d7master
parent
8c832142b4
commit
38cb5b48ec
@ -1,29 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2013 - present Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*/
|
||||
|
||||
package java.lang;
|
||||
|
||||
public class Thread implements Runnable {
|
||||
|
||||
Runnable target;
|
||||
|
||||
public static interface UncaughtExceptionHandler {
|
||||
}
|
||||
|
||||
public synchronized void start() {
|
||||
run();
|
||||
}
|
||||
|
||||
public void run() {
|
||||
if (target != null) {
|
||||
target.run();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue