diff --git a/flatlaf-core/src/main/java/com/formdev/flatlaf/resources/EmptyPackage.java b/flatlaf-core/src/main/java/com/formdev/flatlaf/resources/EmptyPackage.java new file mode 100644 index 00000000..6b1610ca --- /dev/null +++ b/flatlaf-core/src/main/java/com/formdev/flatlaf/resources/EmptyPackage.java @@ -0,0 +1,28 @@ +/* + * Copyright 2021 FormDev Software GmbH + * + * 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 + * + * https://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 com.formdev.flatlaf.resources; + +/** + * The only purpose of this file is to add a .class file to this package to make it non-empty. + * Otherwise the compiler outputs a warning because this package is opend in module-info.java. + * Also when using --patch-module (e.g. from an IDE), an error would occur for empty packages. + * + * @author Karl Tauber + */ +interface EmptyPackage +{ +} diff --git a/flatlaf-extras/src/main/java/com/formdev/flatlaf/extras/resources/EmptyPackage.java b/flatlaf-extras/src/main/java/com/formdev/flatlaf/extras/resources/EmptyPackage.java new file mode 100644 index 00000000..f231e689 --- /dev/null +++ b/flatlaf-extras/src/main/java/com/formdev/flatlaf/extras/resources/EmptyPackage.java @@ -0,0 +1,28 @@ +/* + * Copyright 2021 FormDev Software GmbH + * + * 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 + * + * https://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 com.formdev.flatlaf.extras.resources; + +/** + * The only purpose of this file is to add a .class file to this package to make it non-empty. + * Otherwise the compiler outputs a warning because this package is opend in module-info.java. + * Also when using --patch-module (e.g. from an IDE), an error would occur for empty packages. + * + * @author Karl Tauber + */ +interface EmptyPackage +{ +}