- Timestamp:
- Apr 27, 2004, 8:39:34 PM (22 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
libjava/java/security/ProtectionDomain.java (modified) (2 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libjava/java/security/ProtectionDomain.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 54 54 public class ProtectionDomain 55 55 { 56 private static final String linesep = System.getProperty("line.separator");57 58 56 /** 59 57 * This is the <code>CodeSource</code> for this protection domain … … 132 130 public String toString() 133 131 { 132 134 133 StringBuffer sb = new StringBuffer(""); 135 136 sb.append(super.toString() + " (" + linesep); 137 sb.append(code_source.toString()); 138 sb.append(perms.toString()); 139 sb.append(")" + linesep); 140 134 sb.append("ProtectionDomain (" + linesep); 135 if (code_source == null) 136 sb.append("CodeSource:null" + linesep); 137 else 138 sb.append(code_source + linesep); 139 sb.append(perms); 140 sb.append(linesep + ")" + linesep); 141 141 142 return sb.toString(); 142 143 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
