diff options
Diffstat (limited to 'libjava/classpath/gnu/java/security/provider/DefaultPolicy.java')
-rw-r--r-- | libjava/classpath/gnu/java/security/provider/DefaultPolicy.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/classpath/gnu/java/security/provider/DefaultPolicy.java b/libjava/classpath/gnu/java/security/provider/DefaultPolicy.java index d42be6c908f..566c949dadd 100644 --- a/libjava/classpath/gnu/java/security/provider/DefaultPolicy.java +++ b/libjava/classpath/gnu/java/security/provider/DefaultPolicy.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 @@ -44,7 +44,7 @@ import java.security.PermissionCollection; import java.security.Permissions; import java.security.Policy; -/** +/** * This is just a stub policy implementation which grants all permissions * to any code source. FIXME: This should be replaced with a real * implementation that reads the policy configuration from a file, like @@ -60,7 +60,7 @@ public class DefaultPolicy extends Policy perms.add(allPermission); return perms; } - + public void refresh() { // Nothing. |