fddacd049d
Related: rhbz#2064785
60 lines
1.9 KiB
Diff
60 lines
1.9 KiB
Diff
From 88e2f74d1fa33b32feb3f21bdfd30d475682e6fe Mon Sep 17 00:00:00 2001
|
|
From: Marian Koncek <mkoncek@redhat.com>
|
|
Date: Tue, 9 Nov 2021 12:23:28 +0100
|
|
Subject: [PATCH 4/4] Remove JDK 15 sealed classes
|
|
|
|
---
|
|
.../bytebuddy/test/precompiled/Sealed.java | 40 -------------------
|
|
1 file changed, 40 deletions(-)
|
|
delete mode 100644 byte-buddy-dep/src/precompiled/java/net/bytebuddy/test/precompiled/Sealed.java
|
|
|
|
diff --git a/byte-buddy-dep/src/precompiled/java/net/bytebuddy/test/precompiled/Sealed.java b/byte-buddy-dep/src/precompiled/java/net/bytebuddy/test/precompiled/Sealed.java
|
|
deleted file mode 100644
|
|
index bff4718..0000000
|
|
--- a/byte-buddy-dep/src/precompiled/java/net/bytebuddy/test/precompiled/Sealed.java
|
|
+++ /dev/null
|
|
@@ -1,40 +0,0 @@
|
|
-/*
|
|
- * Copyright 2014 - Present Rafael Winterhalter
|
|
- *
|
|
- * 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 net.bytebuddy.test.precompiled;
|
|
-
|
|
-public sealed
|
|
-
|
|
-class Sealed permits Sealed.SubNonSealed, Sealed.SubSealed, Sealed.SubFinal {
|
|
-
|
|
- public static non-sealed
|
|
-
|
|
- class SubNonSealed extends Sealed {
|
|
- /* empty */
|
|
- }
|
|
-
|
|
- public static sealed
|
|
-
|
|
- class SubSealed extends Sealed permits SubSealed.SubSubFinal {
|
|
-
|
|
- public static final class SubSubFinal extends SubSealed {
|
|
- /* empty */
|
|
- }
|
|
- }
|
|
-
|
|
- public static final class SubFinal extends Sealed {
|
|
- /* empty */
|
|
- }
|
|
-}
|
|
--
|
|
2.35.1
|
|
|