From 8685b3331b9316befd259ca95908daac1e7bfc7c Mon Sep 17 00:00:00 2001 From: Hannes Janetzek Date: Wed, 5 Feb 2014 04:38:28 +0100 Subject: [PATCH] update copyright, add authors --- vtm/src/org/oscim/utils/MathUtils.java | 5 ++-- .../org/oscim/utils/async/AsyncExecutor.java | 5 ++-- .../org/oscim/utils/async/AsyncResult.java | 3 ++- vtm/src/org/oscim/utils/async/AsyncTask.java | 3 ++- .../org/oscim/utils/async/ThreadUtils.java | 27 ------------------- 5 files changed, 10 insertions(+), 33 deletions(-) delete mode 100644 vtm/src/org/oscim/utils/async/ThreadUtils.java diff --git a/vtm/src/org/oscim/utils/MathUtils.java b/vtm/src/org/oscim/utils/MathUtils.java index 6a7a011d..84dfacda 100644 --- a/vtm/src/org/oscim/utils/MathUtils.java +++ b/vtm/src/org/oscim/utils/MathUtils.java @@ -1,6 +1,7 @@ /******************************************************************************* - * Copyright 2011 libgdx authors. - * + * Copyright 2011 Mario Zechner + * Copyright 2011 Nathan Sweet + * * 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 diff --git a/vtm/src/org/oscim/utils/async/AsyncExecutor.java b/vtm/src/org/oscim/utils/async/AsyncExecutor.java index 9b9cc485..a3344833 100644 --- a/vtm/src/org/oscim/utils/async/AsyncExecutor.java +++ b/vtm/src/org/oscim/utils/async/AsyncExecutor.java @@ -1,6 +1,7 @@ /******************************************************************************* - * Copyright 2013 See libgdx AUTHORS file. - * + * Copyright 2013 Mario Zechner + * Copyright 2013 Nathan Sweet + * * 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 diff --git a/vtm/src/org/oscim/utils/async/AsyncResult.java b/vtm/src/org/oscim/utils/async/AsyncResult.java index 19920ddb..fa7cc0fb 100644 --- a/vtm/src/org/oscim/utils/async/AsyncResult.java +++ b/vtm/src/org/oscim/utils/async/AsyncResult.java @@ -1,5 +1,6 @@ /******************************************************************************* - * Copyright 2013 See libgdx AUTHORS file. + * Copyright 2013 Mario Zechner + * Copyright 2013 Nathan Sweet * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/vtm/src/org/oscim/utils/async/AsyncTask.java b/vtm/src/org/oscim/utils/async/AsyncTask.java index 6709491f..8d98340e 100644 --- a/vtm/src/org/oscim/utils/async/AsyncTask.java +++ b/vtm/src/org/oscim/utils/async/AsyncTask.java @@ -1,5 +1,6 @@ /******************************************************************************* - * Copyright 2013 See libgdx AUTHORS file. + * Copyright 2013 Mario Zechner + * Copyright 2013 Nathan Sweet * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/vtm/src/org/oscim/utils/async/ThreadUtils.java b/vtm/src/org/oscim/utils/async/ThreadUtils.java deleted file mode 100644 index 5493a269..00000000 --- a/vtm/src/org/oscim/utils/async/ThreadUtils.java +++ /dev/null @@ -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(); - } -}