diff options
Diffstat (limited to 'libjava/gnu/java/security/provider/GnuDSAPrivateKey.java')
-rw-r--r-- | libjava/gnu/java/security/provider/GnuDSAPrivateKey.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/gnu/java/security/provider/GnuDSAPrivateKey.java b/libjava/gnu/java/security/provider/GnuDSAPrivateKey.java index e82483c..72fe387 100644 --- a/libjava/gnu/java/security/provider/GnuDSAPrivateKey.java +++ b/libjava/gnu/java/security/provider/GnuDSAPrivateKey.java @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -62,7 +62,7 @@ public class GnuDSAPrivateKey implements DSAPrivateKey BigInteger q; BigInteger g; - public GnuDSAPrivateKey(BigInteger x, BigInteger p, BigInteger q, BigInteger g ) + public GnuDSAPrivateKey(BigInteger x, BigInteger p, BigInteger q, BigInteger g ) { this.x = x; this.p = p; @@ -125,8 +125,8 @@ public class GnuDSAPrivateKey implements DSAPrivateKey } catch (IOException ioe) { - return null; - } + return null; + } } public DSAParams getParams() |