Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/security/ProtectionDomain.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    5454public class ProtectionDomain
    5555{
    56   private static final String linesep = System.getProperty("line.separator");
    57 
    5856  /**
    5957   * This is the <code>CodeSource</code> for this protection domain
     
    132130  public String toString()
    133131  {
     132
    134133    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   
    141142    return sb.toString();
    142143  }
Note: See TracChangeset for help on using the changeset viewer.