User: rinkrank
  Date: 02/03/16 11:39:36

  Modified:    src/xjavadoc ProxyClass.java XDoc.java
  Log:
  fixed debug messages
  
  Revision  Changes    Path
  1.11      +2 -2      xjavadoc/src/xjavadoc/ProxyClass.java
  
  Index: ProxyClass.java
  ===================================================================
  RCS file: /cvsroot/xdoclet/xjavadoc/src/xjavadoc/ProxyClass.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -w -r1.10 -r1.11
  --- ProxyClass.java   16 Mar 2002 19:26:04 -0000      1.10
  +++ ProxyClass.java   16 Mar 2002 19:39:36 -0000      1.11
  @@ -547,11 +547,11 @@
                if (_subject == null) {
                        _subject = XJavaDoc.getInstance().getXClass(_qualifiedName, 
false, _useNodeParser);
                        if (_subject instanceof ProxyClass) {
  -                             throw new IllegalStateException("Can't be a proxy for 
a proxy!");
  +                             throw new IllegalStateException("Can't be a proxy for 
a proxy! " + qualifiedName());
                        }
                }
                if (_subject == null) {
  -                     throw new IllegalStateException("Can't be a proxy for a 
proxy!");
  +                     throw new IllegalStateException("subject shouldn't be null 
after resolve():" + qualifiedName());
                }
        }
   }
  
  
  
  1.16      +0 -1      xjavadoc/src/xjavadoc/XDoc.java
  
  Index: XDoc.java
  ===================================================================
  RCS file: /cvsroot/xdoclet/xjavadoc/src/xjavadoc/XDoc.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -w -r1.15 -r1.16
  --- XDoc.java 16 Mar 2002 19:26:04 -0000      1.15
  +++ XDoc.java 16 Mar 2002 19:39:36 -0000      1.16
  @@ -171,7 +171,6 @@
                        ArrayList allTags = new ArrayList(Arrays.asList(tags));
                        XDoc superDoc = this;
                        while ((superDoc = superDoc.superDoc()) != null) {
  -                             System.out.println("ASLAK super");
                                XTag[] superTags = superDoc.tags(tagName);
                                for (int i = 0; i < superTags.length; i++) {
                                        // Do not add redundant tags (a tag defined 
exactly in base and
  
  
  

_______________________________________________
Xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel

Reply via email to