From 7c4aa522d367ccda029a26201ba481dd7b6a792e Mon Sep 17 00:00:00 2001 From: Alexey Andreev Date: Sun, 29 Oct 2023 17:17:38 +0100 Subject: [PATCH] Add missing file --- .../org/teavm/classlib/java/lang/System.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/classlib/src/main/resources/org/teavm/classlib/java/lang/System.js b/classlib/src/main/resources/org/teavm/classlib/java/lang/System.js index 32239b96f..35a57033e 100644 --- a/classlib/src/main/resources/org/teavm/classlib/java/lang/System.js +++ b/classlib/src/main/resources/org/teavm/classlib/java/lang/System.js @@ -1,3 +1,19 @@ +/* + * Copyright 2023 Alexey Andreev. + * + * 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. + */ + function doArrayCopy(src, srcPos, dest, destPos, length) { if (length !== 0) { if (typeof src.data.buffer !== 'undefined') {