From 81ed5ef82931ded603165ef1de06135c194b7ef5 Mon Sep 17 00:00:00 2001 From: Ulugbek Date: Thu, 21 Jul 2022 14:33:53 +0200 Subject: [PATCH] classlib: add an empty implementation of `TAccessControlContext` --- .../java/security/TAccessControlContext.java | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 classlib/src/main/java/org/teavm/classlib/java/security/TAccessControlContext.java diff --git a/classlib/src/main/java/org/teavm/classlib/java/security/TAccessControlContext.java b/classlib/src/main/java/org/teavm/classlib/java/security/TAccessControlContext.java new file mode 100644 index 000000000..a74bbf5ce --- /dev/null +++ b/classlib/src/main/java/org/teavm/classlib/java/security/TAccessControlContext.java @@ -0,0 +1,22 @@ +/* + * Copyright 2022 Ulugbek Abdullaev. + * + * 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.teavm.classlib.java.security; + +// Note: this class is left empty on purpose - +// functionality is intended to be added as need arises +public final class TAccessControlContext { + +}