From b605680a09d690b4b1f4fe402ccce3b4a370311b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotrek=20=C5=BBygie=C5=82o?= Date: Mon, 2 May 2022 20:05:31 +0200 Subject: [PATCH] Remove ZWSP (u200b) --- .../org/jboss/weld/serialization/spi/ProxyServices.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/weld-spi/src/main/java/org/jboss/weld/serialization/spi/ProxyServices.java b/weld-spi/src/main/java/org/jboss/weld/serialization/spi/ProxyServices.java index cb8c8fbf..2bc2bb1e 100644 --- a/weld-spi/src/main/java/org/jboss/weld/serialization/spi/ProxyServices.java +++ b/weld-spi/src/main/java/org/jboss/weld/serialization/spi/ProxyServices.java @@ -61,8 +61,8 @@ public interface ProxyServices extends Service { * * @throws ClassFormatError If the data did not contain a valid class */ - default Class defineClass​(Class originalClass, String className, byte[] classBytes, int off, int len) throws ClassFormatError { - return defineClass​(originalClass, className, classBytes, off, len, null); + default Class defineClass(Class originalClass, String className, byte[] classBytes, int off, int len) throws ClassFormatError { + return defineClass(originalClass, className, classBytes, off, len, null); } /** @@ -86,7 +86,7 @@ public interface ProxyServices extends Service { * @return The {@code Class} object created from the data * @throws ClassFormatError If the data did not contain a valid class */ - default Class defineClass​(Class originalClass, String className, byte[] classBytes, int off, int len, ProtectionDomain protectionDomain) throws ClassFormatError { + default Class defineClass(Class originalClass, String className, byte[] classBytes, int off, int len, ProtectionDomain protectionDomain) throws ClassFormatError { throw new UnsupportedOperationException("ProxyServices#defineClass(Class, String, byte[], int, int, ProtectionDomain) is not implemented!"); } @@ -99,7 +99,7 @@ public interface ProxyServices extends Service { * @return The {@code Class} object for given binary name of the class * @throws ClassNotFoundException If the class was not found */ - default Class loadClass​(Class originalClass, String classBinaryName) throws ClassNotFoundException { + default Class loadClass(Class originalClass, String classBinaryName) throws ClassNotFoundException { throw new UnsupportedOperationException("ProxyServices#loadClass(Class, String) is not implemented!"); }