Skip to content

Commit

Permalink
[RESTEASY-1974] Checkstyle - remove trailing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas Terem authored and asoldano committed Nov 16, 2018
1 parent 7b8e9de commit 332a51f
Show file tree
Hide file tree
Showing 877 changed files with 3,864 additions and 3,864 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import javax.ws.rs.ext.Provider;

/**
*
*
* @author <a href="ron.sigal@jboss.com">Ron Sigal</a>
* @version $Revision: 1.1 $
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
import javax.ws.rs.core.Response;

/**
*
*
*
*
* @author <a href="ron.sigal@jboss.com">Ron Sigal</a>
* @version $Revision: 1.1 $
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import java.util.Set;

/**
*
*
* @author <a href="ron.sigal@jboss.com">Ron Sigal</a>
* @version $Revision: 1.1 $
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void run()
};
t.start();
}

@GET
@Path("default")
public void defaultTest(final @Suspend AsynchronousResponse response)
Expand Down
4 changes: 2 additions & 2 deletions eagledns/src/main/java/se/unlogic/eagledns/EagleDNS.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@

/**
* EagleDNS copyright Robert "Unlogic" Olofsson (unlogic@unlogic.se)
*
*
* Based on the jnamed class from the dnsjava project (http://www.dnsjava.org/) copyright (c) 1999-2004 Brian Wellington (bwelling@xbill.org)
*
*
* @author Robert "Unlogic" Olofsson
* @author Michael Neale, Red Hat (JBoss division)
*/
Expand Down
4 changes: 2 additions & 2 deletions eagledns/src/main/java/se/unlogic/eagledns/SecondaryZone.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

/**
* This class is used to hold data secondary zones when they are loaded from ZoneProviders. The actual Zone field may be left blank if the ZoneProvider has no previously stored copy of the zoneBackup.
*
*
* @author Robert "Unlogic" Olofsson
*
*
*/
public class SecondaryZone {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

/**
* Interface that enables {@link ZoneProvider}'s to reload the zone cache in Eagle DNS without using the remote management interface ({@link EagleManager}).
*
*
* @author Robert "Unlogic" Olofsson (unlogic@unlogic.se)
* @author Michael Neale, Red Hat (JBoss division)
*
*
*/
public interface ZoneChangeCallback {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* This interface is used to dynamicly load zones from different type of zone providers in runtime
* enabling zones to be added, updated and removed in runtime without restarting the EagleDNS dns server itself.
*
*
* @author Unlogic
*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

/**
* Interface that tells Eagle DNS that a {@link ZoneProvider} can trigger a zone reload.
*
*
* @author Robert "Unlogic" Olofsson (unlogic@unlogic.se)
* @author Michael Neale, Red Hat (JBoss division)
*
*
*/
public interface ZoneProviderUpdatable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* This class loads primary zones from zone files in the file system.
* The zone files have to formated accordingly to RFC 1035 (http://tools.ietf.org/html/rfc1035)
* and RFC 1034 (http://tools.ietf.org/html/rfc1034).
*
*
* @author Robert "Unlogic" Olofsson
* @author Michael Neale, Red Hat (JBoss division)
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

/**
* This annotation is together with the {@link WebPopulate} annotation to indicate that the request parameters of a field should be split on line break.
*
*
* It should be noted that this is only supported for fields of the type {@link List}.
*
*
* @author Robert "Unlogic" Olofsson (unlogic@unlogic.se)
*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

/**
* This annotation is together with the {@link WebPopulate} annotation to indicate that the request parameters of a field should be split on line break.
*
*
* It should be noted that this is only supported for fields of the type {@link List}.
*
*
* @author Robert "Unlogic" Olofsson (unlogic@unlogic.se)
*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

/**
* This annotation is used to annotate fields that are to be populated by the {@link se.unlogic.webutils.populators.annotated.AnnotatedRequestPopulator}.
*
*
* @author Robert "Unlogic" Olofsson (unlogic@unlogic.se)
*
*/
Expand Down
24 changes: 12 additions & 12 deletions eagledns/src/main/java/se/unlogic/standardutils/crypto/Base64.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,29 +9,29 @@
* <p>
* Homepage: <a href="http://iharder.net/base64">http://iharder.net/base64</a>.
* </p>
*
*
* <p>
* Example:
* </p>
*
*
* <code>String encoded = Base64.encode( myByteArray );</code> <br />
* <code>byte[] myByteArray = Base64.decode( encoded );</code>
*
*
* <p>
* The <tt>options</tt> parameter, which appears in a few places, is used to pass several pieces of information to the encoder. In the "higher level" methods
* such as encodeBytes( bytes, options ) the options parameter can be used to indicate such things as first gzipping the bytes before encoding them, not
* inserting linefeeds, and encoding using the URL-safe and Ordered dialects.
* </p>
*
*
* <p>
* Note, according to <a href="http://www.faqs.org/rfcs/rfc3548.html">RFC3548</a>, Section 2.1, implementations should not add line feeds unless explicitly told
* to do so. I've got Base64 set to this behavior now, although earlier versions broke lines by default.
* </p>
*
*
* <p>
* The constants defined in Base64 can be OR-ed together to combine options, so you might make a call like this:
* </p>
*
*
* <code>String encoded = Base64.encodeBytes( mybytes, Base64.GZIP | Base64.DO_BREAK_LINES );</code>
* <p>
* to compress the data before encoding it and then making the output have newline characters.
Expand All @@ -40,9 +40,9 @@
* Also...
* </p>
* <code>String encoded = Base64.encodeBytes( crazyString.getBytes() );</code>
*
*
*
*
*
*
* <p>
* Change Log:
* </p>
Expand Down Expand Up @@ -88,7 +88,7 @@
* http://www.faqs.org/qa/rfcc-1940.html</li>
* </ol>
* Special thanks to Jim Kellerman at <a href="http://www.powerset.com/">http://www.powerset.com/</a> for contributing the new Base64 dialects.</li>
*
*
* <li>v2.1 - Cleaned up javadoc comments and unused variables and methods. Added some convenience methods for reading and writing to and from files.</li>
* <li>v2.0.2 - Now specifies UTF-8 encoding in places where the code fails on systems with other encodings (like EBCDIC).</li>
* <li>v2.0.1 - Fixed an error when decoding a single byte, that is, when the encoded data was a single byte.</li>
Expand All @@ -105,12 +105,12 @@
* <li>v1.3.4 - Fixed when "improperly padded stream" error was thrown at the wrong time.</li>
* <li>v1.3.3 - Fixed I/O streams which were totally messed up.</li>
* </ul>
*
*
* <p>
* I am placing this code in the Public Domain. Do with it as you will. This software comes with no guarantees or warranties but with plenty of well-wishing
* instead! Please visit <a href="http://iharder.net/base64">http://iharder.net/base64</a> periodically to check for updates or to contribute improvements.
* </p>
*
*
* @author Robert Harder
* @author rob@iharder.net
* @version 2.3.7
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@

/**
* This class represents a SQL query and is used together with a AnnotatedDAO typed with a matching type.<p>
*
*
* A high level abstracts away all and also verifies that the query parameters and order by criterias are of the correct type to avoid SQL exceptions.<p>
*
* @param <T> The type of bean this query is supposed to return
*
*
* @author Robert "Unlogic" Olofsson (unlogic@unlogic.se)
*/
public class HighLevelQuery<T> extends RelationQuery{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@
/**
* This class represents a SQL query and is used together with the {@link AnnotatedDAO} class.
* <p>
*
*
* A low level query lets you write the SQL and set any parameters in contrast to the {@link HighLevelQuery}.
* <p>
*
*
* The SQL query is written like a normal prepared statement with '?' chars representing the parameters to be set.
* <p>
*
*
* The parameters will be set on the prepared statement using the "class -> method mapping" in the {@link PreparedStatementQueryMethods} class.<br>
* Basically this means that any parameter that has a set method matching it's type in the {@link PreparedStatement} interface will work.
* <p>
*
*
*
*
* @author Robert "Unlogic" Olofsson (unlogic@unlogic.se)
*/
public class LowLevelQuery<T> extends RelationQuery {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@

/**
* This class provides a static map containing mappings from classes to their corresponding set methods in the {@link PreparedStatement} interface.<p>
*
*
* {@link Integer}, {@link Long}, {@link Double}, {@link Float}, {@link Boolean} and {@link Byte} types are mapped to the setObject method in order to allow null values.<p>
*
*
* All other types are mapped to their default set method in the {@link PreparedStatement} interface.
*
*
* @author Robert "Unlogic" Olofsson (unlogic@unlogic.se)
*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* This annotation is used in conjunction with the {@link OneToMany} annotation to indicate the annotated field
* is a relation to a table containing only two columns, key and value and therefore doesn't require a separate bean class.
*
*
* @author Robert "Unlogic" Olofsson (unlogic@unlogic.se)
*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void executeScript(InputStream inputStream) throws SQLException, IOExcept
throw e;
}
}

this.executeScript(sb.toString());

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
******************************************************************************/
package se.unlogic.standardutils.dao.script;
/**
* This class represents a region (a sequence) between two symbols (sequences) in a sequence
* This class represents a region (a sequence) between two symbols (sequences) in a sequence
* @author sikstromj
*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

/**
* Utility class for executing processes and handling the output from them.
*
*
* @author Robert "Unlogic" Olofsson (unlogic@unlogic.se)
*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

/**
* Abstract class for handling output from {@link InputStream}'s.<p>
*
*
* @author Robert "Unlogic" Olofsson (unlogic@unlogic.se)
*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@

/**
* A simple buffered {@link StreamHandler} implementation that prints the input from the {@link InputStream} to the given {@link OutputStream}. If no {@link OutputStream} is given it defaults to System.out.<p>
*
*
* This implementation inputStream based on the {@link PrintWriter}, {@link InputStreamReader} and {@link BufferedReader} classes.
*
*
* @author Robert "Unlogic" Olofsson (unlogic@unlogic.se)
*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@

/**
* Utility class for handling files and folders
*
*
* @author Robert "Unlogic" Olofsson (unlogic@unlogic.se)
*
*
*/
public class FileUtils {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@

/**
* A JSON array component having children
*
*
* Equalizes the "composite" of the "composite pattern" design pattern.
*
*
* @author sikstromj
*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

/**
* A JSON value component (no children)
*
*
* Equalizes the "leaf" of the "composite pattern" design pattern.
* @author sikstromj
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

/**
* Abstraction interface for all JSON components
*
*
* Equalizes the "component" of the "composite pattern" design pattern.
*
*
* @author sikstromj
*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@

/**
* A JSON object component having children
*
*
* Equalizes the "composite" of the "composite pattern" design pattern.
*
*
* @author sikstromj
*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

/**
* This interface is used for populating a bean or type from a String
*
*
* @author Robert "Unlogic" Olofsson
*
* @param <T>
Expand Down

0 comments on commit 332a51f

Please sign in to comment.