aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/apache/commons/lang3/package-info.java
diff options
context:
space:
mode:
authorpascalschumacher <pascalschumacher@gmx.net>2018-11-18 11:59:34 +0100
committerpascalschumacher <pascalschumacher@gmx.net>2018-11-19 22:04:35 +0100
commit89cbfa54b041541077b8158b667ee3830a8abe5c (patch)
tree799db29a69cc6df137657ed1d965fae85f672fb9 /src/main/java/org/apache/commons/lang3/package-info.java
parentc4d0dbcb56b8980b1b3b7c85d00ad6540788c08e (diff)
downloadapache-commons-lang-89cbfa54b041541077b8158b667ee3830a8abe5c.tar.gz
Make whitespace use after tokens consistent and add a checkstyle rule to enforce it.
Diffstat (limited to 'src/main/java/org/apache/commons/lang3/package-info.java')
-rw-r--r--src/main/java/org/apache/commons/lang3/package-info.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/apache/commons/lang3/package-info.java b/src/main/java/org/apache/commons/lang3/package-info.java
index b9f22ba25..9a476fe5c 100644
--- a/src/main/java/org/apache/commons/lang3/package-info.java
+++ b/src/main/java/org/apache/commons/lang3/package-info.java
@@ -61,7 +61,7 @@
* <p>SystemUtils is a simple little class which makes it easy to find out information about which platform you are on.
* For some, this is a necessary evil. It was never something I expected to use myself until I was trying to ensure that Commons Lang itself compiled under JDK 1.2.
* Having pushed out a few JDK 1.3 bits that had slipped in (<code>Collections.EMPTY_MAP</code> is a classic offender), I then found that one of the Unit Tests was dying mysteriously under JDK 1.2, but ran fine under JDK 1.3.
- * There was no obvious solution and I needed to move onwards, so the simple solution was to wrap that particular test in a <code>if(SystemUtils.isJavaVersionAtLeast(1.3f)) {</code>, make a note and move on.</p>
+ * There was no obvious solution and I needed to move onwards, so the simple solution was to wrap that particular test in a <code>if (SystemUtils.isJavaVersionAtLeast(1.3f)) {</code>, make a note and move on.</p>
*
* <p>The {@link org.apache.commons.lang3.CharEncoding} class is also used to interact with the Java environment and may be used to see which character encodings are supported in a particular environment. </p>
*