aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/commons/lang3/mutable/Mutable.java
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2011-09-15 00:00:47 +0200
committerSamuel Tardieu <sam@rfc1149.net>2011-09-15 00:00:47 +0200
commitf43c74c63c80943fcad75687121f4bd4b649c48f (patch)
tree802f93ff6914b54cdaeba0df35fc8bb7d5dd4498 /src/org/apache/commons/lang3/mutable/Mutable.java
parentfeda5dd2abefe921b11e492996e9701ffdac0d4b (diff)
downloadcgeo-f43c74c63c80943fcad75687121f4bd4b649c48f.zip
cgeo-f43c74c63c80943fcad75687121f4bd4b649c48f.tar.gz
cgeo-f43c74c63c80943fcad75687121f4bd4b649c48f.tar.bz2
Remove trailing whitespace in Javadoc strings
Diffstat (limited to 'src/org/apache/commons/lang3/mutable/Mutable.java')
-rw-r--r--src/org/apache/commons/lang3/mutable/Mutable.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/org/apache/commons/lang3/mutable/Mutable.java b/src/org/apache/commons/lang3/mutable/Mutable.java
index 25a78f2..19a736e 100644
--- a/src/org/apache/commons/lang3/mutable/Mutable.java
+++ b/src/org/apache/commons/lang3/mutable/Mutable.java
@@ -5,9 +5,9 @@
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* 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.
@@ -25,23 +25,23 @@ package org.apache.commons.lang3.mutable;
* A typical use case would be to enable a primitive or string to be passed to a method and allow that method to
* effectively change the value of the primitive/string. Another use case is to store a frequently changing primitive in
* a collection (for example a total in a map) without needing to create new Integer/Long wrapper objects.
- *
+ *
* @since 2.1
- * @param <T> the type to set and get
+ * @param <T> the type to set and get
* @version $Id: Mutable.java 1153213 2011-08-02 17:35:39Z ggregory $
*/
public interface Mutable<T> {
/**
* Gets the value of this mutable.
- *
+ *
* @return the stored value
*/
T getValue();
/**
* Sets the value of this mutable.
- *
+ *
* @param value
* the value to store
* @throws NullPointerException