jmartin     01/03/17 00:47:14

  Modified:    src/java/org/apache/alexandria/jxr CodeTransform.java
  Log:
  Supress debug messages
  
  Revision  Changes    Path
  1.19      +7 -7      
jakarta-alexandria/src/java/org/apache/alexandria/jxr/CodeTransform.java
  
  Index: CodeTransform.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-alexandria/src/java/org/apache/alexandria/jxr/CodeTransform.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- CodeTransform.java        2001/02/28 10:05:02     1.18
  +++ CodeTransform.java        2001/03/17 08:47:14     1.19
  @@ -867,7 +867,7 @@
                       //if there is a "." in the string then we have to assume
                       //it is a package.
   
  -                    System.out.println( "FIX ME: Currently working in package mode" 
);
  +                    //System.out.println( "FIX ME: Currently working in package 
mode" );
   
                       
                       String fqpn_package = null;
  @@ -876,8 +876,8 @@
                       fqpn_package = wordName.substring( 0, wordName.lastIndexOf( "." 
) );
                       fqpn_class = wordName.substring( wordName.lastIndexOf( "." ) + 
1, wordName.length() );
   
  -                    System.out.println( "fqpn_package -> " + fqpn_package );
  -                    System.out.println( "fqpn_class -> " + fqpn_class );            
        
  +                    //System.out.println( "fqpn_package -> " + fqpn_package );
  +                    //System.out.println( "fqpn_class -> " + fqpn_class );          
          
                       
                       //note. since this is a reference to a full package then 
                       //it doesn't have to be explicitly imported so this information
  @@ -894,7 +894,7 @@
                               //that is in the package manager so it is time to 
                               //link to it.
                               
  -                            System.out.println( "FIX ME:  Found explicit class 
reference: " + wordName );
  +                            //System.out.println( "FIX ME:  Found explicit class 
reference: " + wordName );
                               line = xrLine( line, pt.getName(), ct );
                               
                           }
  @@ -907,7 +907,7 @@
                           //then the package we are currently in is the one specified 
in the string
                           //and the import class is correct.
   
  -                        System.out.println( "FIX ME: found class: " + wordName );
  +                        //System.out.println( "FIX ME: found class: " + wordName );
                           line = xrLine( line, packages[j], 
currentImport.getClassType( fqpn_class ) );
   
                       }
  @@ -915,7 +915,7 @@
                       
                   } else if ( currentImport.getClassType( wordName ) != null ) {
   
  -                    System.out.println( "FIX ME: found imported class: "+ wordName  
);
  +                    //System.out.println( "FIX ME: found imported class: "+ 
wordName  );
                       line = xrLine( line, packages[j], currentImport.getClassType( 
wordName ) );
                           
                   } 
  @@ -1328,7 +1328,7 @@
           String link = "<a href=\"" + href + "\">" + find + "</a>";
           
           
  -        System.out.println( "find" );
  +        //System.out.println( "find" );
           
           return Util.replace( line, find, link );
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to