diff --git a/infer/models/java/src/java/lang/Thread.java b/infer/models/java/src/java/lang/Thread.java deleted file mode 100644 index 5ac067490..000000000 --- a/infer/models/java/src/java/lang/Thread.java +++ /dev/null @@ -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(); - } - } - -}