update copyright, add authors

This commit is contained in:
Hannes Janetzek 2014-02-05 04:38:28 +01:00
parent 8157af9fb0
commit 8685b3331b
5 changed files with 10 additions and 33 deletions

View File

@ -1,5 +1,6 @@
/*******************************************************************************
* Copyright 2011 libgdx authors.
* Copyright 2011 Mario Zechner <badlogicgames@gmail.com>
* Copyright 2011 Nathan Sweet <nathan.sweet@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

View File

@ -1,5 +1,6 @@
/*******************************************************************************
* Copyright 2013 See libgdx AUTHORS file.
* Copyright 2013 Mario Zechner <badlogicgames@gmail.com>
* Copyright 2013 Nathan Sweet <nathan.sweet@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

View File

@ -1,5 +1,6 @@
/*******************************************************************************
* Copyright 2013 See libgdx AUTHORS file.
* Copyright 2013 Mario Zechner <badlogicgames@gmail.com>
* Copyright 2013 Nathan Sweet <nathan.sweet@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

View File

@ -1,5 +1,6 @@
/*******************************************************************************
* Copyright 2013 See libgdx AUTHORS file.
* Copyright 2013 Mario Zechner <badlogicgames@gmail.com>
* Copyright 2013 Nathan Sweet <nathan.sweet@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

View File

@ -1,27 +0,0 @@
/*******************************************************************************
* Copyright 2013 See libgdx AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/
package org.oscim.utils.async;
/**
* Utilities for threaded programming.
*
* @author badlogic
*/
public class ThreadUtils {
public static void yield() {
Thread.yield();
}
}