From e1a01ce23120bebc2e01fc2e18cded81f9a7b9b5 Mon Sep 17 00:00:00 2001 From: Robinson Date: Mon, 26 Apr 2021 14:44:08 +0200 Subject: [PATCH] Added empty classes to make intellij happy --- src9/dorkbox/exit/EmptyClass.java | 24 ++++++++++++++ src9/dorkbox/jna/EmptyClass.java | 24 ++++++++++++++ src9/dorkbox/jna/linux/EmptyClass.java | 24 ++++++++++++++ .../dorkbox/jna/linux/structs/EmptyClass.java | 24 ++++++++++++++ src9/dorkbox/jna/macos/EmptyClass.java | 24 ++++++++++++++ src9/dorkbox/jna/macos/cocoa/EmptyClass.java | 24 ++++++++++++++ .../jna/macos/foundation/EmptyClass.java | 24 ++++++++++++++ src9/dorkbox/jna/windows/EmptyClass.java | 24 ++++++++++++++ .../jna/windows/structs/EmptyClass.java | 24 ++++++++++++++ src9/dorkbox/os/EmptyClass.java | 24 ++++++++++++++ src9/dorkbox/urlHandler/EmptyClass.java | 24 ++++++++++++++ src9/dorkbox/util/EmptyClass.java | 24 ++++++++++++++ src9/dorkbox/util/classes/EmptyClass.java | 24 ++++++++++++++ src9/dorkbox/util/collections/EmptyClass.java | 24 ++++++++++++++ src9/dorkbox/util/crypto/EmptyClass.java | 24 ++++++++++++++ .../util/crypto/signers/EmptyClass.java | 24 ++++++++++++++ src9/dorkbox/util/entropy/EmptyClass.java | 24 ++++++++++++++ .../dorkbox/util/exceptions/EmptyClass.java | 32 ++++--------------- src9/dorkbox/util/gwt/EmptyClass.java | 24 ++++++++++++++ src9/dorkbox/util/properties/EmptyClass.java | 24 ++++++++++++++ src9/dorkbox/util/swing/EmptyClass.java | 24 ++++++++++++++ .../util/userManagement/EmptyClass.java | 24 ++++++++++++++ 22 files changed, 511 insertions(+), 25 deletions(-) create mode 100644 src9/dorkbox/exit/EmptyClass.java create mode 100644 src9/dorkbox/jna/EmptyClass.java create mode 100644 src9/dorkbox/jna/linux/EmptyClass.java create mode 100644 src9/dorkbox/jna/linux/structs/EmptyClass.java create mode 100644 src9/dorkbox/jna/macos/EmptyClass.java create mode 100644 src9/dorkbox/jna/macos/cocoa/EmptyClass.java create mode 100644 src9/dorkbox/jna/macos/foundation/EmptyClass.java create mode 100644 src9/dorkbox/jna/windows/EmptyClass.java create mode 100644 src9/dorkbox/jna/windows/structs/EmptyClass.java create mode 100644 src9/dorkbox/os/EmptyClass.java create mode 100644 src9/dorkbox/urlHandler/EmptyClass.java create mode 100644 src9/dorkbox/util/EmptyClass.java create mode 100644 src9/dorkbox/util/classes/EmptyClass.java create mode 100644 src9/dorkbox/util/collections/EmptyClass.java create mode 100644 src9/dorkbox/util/crypto/EmptyClass.java create mode 100644 src9/dorkbox/util/crypto/signers/EmptyClass.java create mode 100644 src9/dorkbox/util/entropy/EmptyClass.java rename src/dorkbox/util/exceptions/SecurityException.java => src9/dorkbox/util/exceptions/EmptyClass.java (55%) create mode 100644 src9/dorkbox/util/gwt/EmptyClass.java create mode 100644 src9/dorkbox/util/properties/EmptyClass.java create mode 100644 src9/dorkbox/util/swing/EmptyClass.java create mode 100644 src9/dorkbox/util/userManagement/EmptyClass.java diff --git a/src9/dorkbox/exit/EmptyClass.java b/src9/dorkbox/exit/EmptyClass.java new file mode 100644 index 0000000..16c2a76 --- /dev/null +++ b/src9/dorkbox/exit/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.exit; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {} diff --git a/src9/dorkbox/jna/EmptyClass.java b/src9/dorkbox/jna/EmptyClass.java new file mode 100644 index 0000000..bcdac6e --- /dev/null +++ b/src9/dorkbox/jna/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.jna; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {} diff --git a/src9/dorkbox/jna/linux/EmptyClass.java b/src9/dorkbox/jna/linux/EmptyClass.java new file mode 100644 index 0000000..b4419be --- /dev/null +++ b/src9/dorkbox/jna/linux/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.jna.linux; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {} diff --git a/src9/dorkbox/jna/linux/structs/EmptyClass.java b/src9/dorkbox/jna/linux/structs/EmptyClass.java new file mode 100644 index 0000000..da83465 --- /dev/null +++ b/src9/dorkbox/jna/linux/structs/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.jna.linux.structs; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {} diff --git a/src9/dorkbox/jna/macos/EmptyClass.java b/src9/dorkbox/jna/macos/EmptyClass.java new file mode 100644 index 0000000..c2778d2 --- /dev/null +++ b/src9/dorkbox/jna/macos/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.jna.macos; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {} diff --git a/src9/dorkbox/jna/macos/cocoa/EmptyClass.java b/src9/dorkbox/jna/macos/cocoa/EmptyClass.java new file mode 100644 index 0000000..cc18344 --- /dev/null +++ b/src9/dorkbox/jna/macos/cocoa/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.jna.macos.cocoa; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {} diff --git a/src9/dorkbox/jna/macos/foundation/EmptyClass.java b/src9/dorkbox/jna/macos/foundation/EmptyClass.java new file mode 100644 index 0000000..ecc43ba --- /dev/null +++ b/src9/dorkbox/jna/macos/foundation/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.jna.macos.foundation; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {} diff --git a/src9/dorkbox/jna/windows/EmptyClass.java b/src9/dorkbox/jna/windows/EmptyClass.java new file mode 100644 index 0000000..fd49692 --- /dev/null +++ b/src9/dorkbox/jna/windows/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.jna.windows; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {} diff --git a/src9/dorkbox/jna/windows/structs/EmptyClass.java b/src9/dorkbox/jna/windows/structs/EmptyClass.java new file mode 100644 index 0000000..0220383 --- /dev/null +++ b/src9/dorkbox/jna/windows/structs/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.jna.windows.structs; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {} diff --git a/src9/dorkbox/os/EmptyClass.java b/src9/dorkbox/os/EmptyClass.java new file mode 100644 index 0000000..c650f84 --- /dev/null +++ b/src9/dorkbox/os/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.os; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {} diff --git a/src9/dorkbox/urlHandler/EmptyClass.java b/src9/dorkbox/urlHandler/EmptyClass.java new file mode 100644 index 0000000..edc9f66 --- /dev/null +++ b/src9/dorkbox/urlHandler/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.urlHandler; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {} diff --git a/src9/dorkbox/util/EmptyClass.java b/src9/dorkbox/util/EmptyClass.java new file mode 100644 index 0000000..c513534 --- /dev/null +++ b/src9/dorkbox/util/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.util; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {} diff --git a/src9/dorkbox/util/classes/EmptyClass.java b/src9/dorkbox/util/classes/EmptyClass.java new file mode 100644 index 0000000..49c9c01 --- /dev/null +++ b/src9/dorkbox/util/classes/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.util.classes; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {} diff --git a/src9/dorkbox/util/collections/EmptyClass.java b/src9/dorkbox/util/collections/EmptyClass.java new file mode 100644 index 0000000..cd99057 --- /dev/null +++ b/src9/dorkbox/util/collections/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.util.collections; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {} diff --git a/src9/dorkbox/util/crypto/EmptyClass.java b/src9/dorkbox/util/crypto/EmptyClass.java new file mode 100644 index 0000000..753d76b --- /dev/null +++ b/src9/dorkbox/util/crypto/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.util.crypto; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {} diff --git a/src9/dorkbox/util/crypto/signers/EmptyClass.java b/src9/dorkbox/util/crypto/signers/EmptyClass.java new file mode 100644 index 0000000..10f44a1 --- /dev/null +++ b/src9/dorkbox/util/crypto/signers/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.util.crypto.signers; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {} diff --git a/src9/dorkbox/util/entropy/EmptyClass.java b/src9/dorkbox/util/entropy/EmptyClass.java new file mode 100644 index 0000000..936ea08 --- /dev/null +++ b/src9/dorkbox/util/entropy/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.util.entropy; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {} diff --git a/src/dorkbox/util/exceptions/SecurityException.java b/src9/dorkbox/util/exceptions/EmptyClass.java similarity index 55% rename from src/dorkbox/util/exceptions/SecurityException.java rename to src9/dorkbox/util/exceptions/EmptyClass.java index 71beaa6..346c703 100644 --- a/src/dorkbox/util/exceptions/SecurityException.java +++ b/src9/dorkbox/util/exceptions/EmptyClass.java @@ -1,5 +1,5 @@ /* - * Copyright 2010 dorkbox, llc + * Copyright 2021 dorkbox, llc * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,30 +13,12 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package dorkbox.util.exceptions; +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ public -class SecurityException extends Exception { - - private static final long serialVersionUID = -1031633076501715224L; - - public - SecurityException() { - super(); - } - - public - SecurityException(String message, Throwable cause) { - super(message, cause); - } - - public - SecurityException(String message) { - super(message); - } - - public - SecurityException(Throwable cause) { - super(cause); - } -} +class EmptyClass {} diff --git a/src9/dorkbox/util/gwt/EmptyClass.java b/src9/dorkbox/util/gwt/EmptyClass.java new file mode 100644 index 0000000..e3e3418 --- /dev/null +++ b/src9/dorkbox/util/gwt/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.util.gwt; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {} diff --git a/src9/dorkbox/util/properties/EmptyClass.java b/src9/dorkbox/util/properties/EmptyClass.java new file mode 100644 index 0000000..48c1479 --- /dev/null +++ b/src9/dorkbox/util/properties/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.util.properties; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {} diff --git a/src9/dorkbox/util/swing/EmptyClass.java b/src9/dorkbox/util/swing/EmptyClass.java new file mode 100644 index 0000000..e253242 --- /dev/null +++ b/src9/dorkbox/util/swing/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.util.swing; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {} diff --git a/src9/dorkbox/util/userManagement/EmptyClass.java b/src9/dorkbox/util/userManagement/EmptyClass.java new file mode 100644 index 0000000..d2c6961 --- /dev/null +++ b/src9/dorkbox/util/userManagement/EmptyClass.java @@ -0,0 +1,24 @@ +/* + * Copyright 2021 dorkbox, llc + * + * 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 dorkbox.util.userManagement; + +/** + * Required for intellij to not complain regarding `module-info` for a multi-release jar. + * This file is completely ignored by the gradle build process + */ +public +class EmptyClass {}