/[classpath]/classpath/gnu/CORBA/CDR/cdrInput.java
ViewVC logotype

Diff of /classpath/gnu/CORBA/CDR/cdrInput.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.5 by audriusa, Fri Jun 3 15:12:30 2005 UTC revision 1.6 by audriusa, Tue Jun 7 22:38:15 2005 UTC
# Line 352  public abstract class cdrInput Line 352  public abstract class cdrInput
352     * the .narrow method of its helper, despite in some cases the direct     * the .narrow method of its helper, despite in some cases the direct
353     * cast would also work.     * cast would also work.
354     *     *
355       * The null objects are recognised from the empty profile set.
356       * For such objects, null is returned.
357       *
358     * @return the loaded and constructed object.     * @return the loaded and constructed object.
359     */     */
360    public Object read_Object()    public Object read_Object()
# Line 361  public abstract class cdrInput Line 364  public abstract class cdrInput
364          IOR ior = new IOR();          IOR ior = new IOR();
365          ior._read_no_endian(this);          ior._read_no_endian(this);
366    
367            if (ior.Id == null) return null;
368    
369          // Check maybe this is a remote reference to the local object.          // Check maybe this is a remote reference to the local object.
370          // This is only possible if we access the repository of the          // This is only possible if we access the repository of the
371          // connected object.          // connected object.

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26