From 10503309420fa1083fb8cf60d25da10d457ff2ed Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Thu, 21 Apr 2016 22:05:59 +0200 Subject: [PATCH] fixed line-breaking (needs fixing NetBeans settings) --- .../model/user/UserSessionBeanRemote.java | 22 +++---------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/src/org/mxchange/jusercore/model/user/UserSessionBeanRemote.java b/src/org/mxchange/jusercore/model/user/UserSessionBeanRemote.java index 80a55f5..e05fb14 100644 --- a/src/org/mxchange/jusercore/model/user/UserSessionBeanRemote.java +++ b/src/org/mxchange/jusercore/model/user/UserSessionBeanRemote.java @@ -48,9 +48,7 @@ public interface UserSessionBeanRemote extends Serializable { *

* @return User instance * - * @throws org.mxchange.jusercore.exceptions.UserNotFoundException If the - * user is - * not found + * @throws org.mxchange.jusercore.exceptions.UserNotFoundException If the user is not found */ User findUserById (final Long userId) throws UserNotFoundException; @@ -61,22 +59,8 @@ public interface UserSessionBeanRemote extends Serializable { *

* @return Updated user instance *

- * @throws - * org.mxchange.jusercore.exceptions.UserNameAlreadyRegisteredException When - * the - * user - * name - * is - * already - * used - * @throws - * * org.mxchange.jusercore.exceptions.EmailAddressAlreadyRegisteredException When - * the - * email - * address - * is - * already - * used + * @throws org.mxchange.jusercore.exceptions.UserNameAlreadyRegisteredException When the user name is already used + * @throws org.mxchange.jusercore.exceptions.EmailAddressAlreadyRegisteredException When the email address is already used */ User addUser (final User user) throws UserNameAlreadyRegisteredException, EmailAddressAlreadyRegisteredException; -- 2.39.5