From 6bd124776c00226dc07d4f4c2f713c9d7d86c5f3 Mon Sep 17 00:00:00 2001 From: Colin Alworth Date: Thu, 7 Jul 2022 14:38:45 -0500 Subject: [PATCH] break some things --- .../com/google/gwt/core/client/GwtScriptOnly.java | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/dev/core/super/com/google/gwt/core/client/GwtScriptOnly.java b/dev/core/super/com/google/gwt/core/client/GwtScriptOnly.java index d1e7127ecd7..38d207afc8f 100644 --- a/dev/core/super/com/google/gwt/core/client/GwtScriptOnly.java +++ b/dev/core/super/com/google/gwt/core/client/GwtScriptOnly.java @@ -7,7 +7,8 @@ * * http://www.apache.org/licenses/LICENSE-2.0 * - * Unless required by applicable law or agreed to in writing, software + * 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 @@ -16,9 +17,10 @@ package com.google.gwt.core.client; import java.lang.annotation.Documented; -import java.lang.annotation.ElementType; import java.lang.annotation.Target; +import java.lang.annotation.ElementType; + /** * This annotation is used to break out of a module's source path in hosted * mode. Types annotated with this annotation will not be loaded by hosted @@ -41,4 +43,9 @@ @Target({ElementType.TYPE, ElementType.METHOD}) @Deprecated public @interface GwtScriptOnly { + + + } + +