More whitespace fixes.
[jFCPlib.git] / src / net / pterodactylus / fcp / DSAGroup.java
index 3f7e18f..4674e66 100644 (file)
@@ -23,7 +23,7 @@ import java.security.interfaces.DSAParams;
 /**
  * Container for the DSA group of a peer. A DSA group consists of a base (called
  * “g”), a prime (called “p”) and a subprime (called “q”).
- * 
+ *
  * @see DSAParams
  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
  */
@@ -41,7 +41,7 @@ public class DSAGroup {
        /**
         * Creates a new DSA group with the given base (“g”), prime (“p”), and
         * subprime (“q”).
-        * 
+        *
         * @param base
         *            The base of the DSA group
         * @param prime
@@ -57,7 +57,7 @@ public class DSAGroup {
 
        /**
         * Returns the base (“g”) of the DSA group.
-        * 
+        *
         * @return The base of the DSA group
         */
        public String getBase() {
@@ -66,7 +66,7 @@ public class DSAGroup {
 
        /**
         * Returns the prime (“p”) of the DSA group.
-        * 
+        *
         * @return The prime of the DSA group
         */
        public String getPrime() {
@@ -75,7 +75,7 @@ public class DSAGroup {
 
        /**
         * Returns the subprime (“q”) of the DSA group.
-        * 
+        *
         * @return The subprime of the DSA group
         */
        public String getSubprime() {