/[classpath]/classpath/gnu/java/net/protocol/file/FileURLConnection.java
ViewVC logotype

Diff of /classpath/gnu/java/net/protocol/file/FileURLConnection.java

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

revision 1.3 by mark, Tue Jan 22 22:26:57 2002 UTC revision 1.4 by mark, Fri Feb 15 15:24:00 2002 UTC
# Line 85  FileURLConnection(java.net.URL url) Line 85  FileURLConnection(java.net.URL url)
85  }  }
86    
87  /*************************************************************************/  /*************************************************************************/
   
88  /*  /*
89   * Instance Methods   * Instance Methods
90   */   */
# Line 96  FileURLConnection(java.net.URL url) Line 95  FileURLConnection(java.net.URL url)
95  public void  public void
96  connect() throws java.io.IOException  connect() throws java.io.IOException
97  {  {
98    file = new java.io.File(getURL().getFile());    if (!connected)
99      {
100        file = new java.io.File(getURL().getFile());
101        connected = true;
102      }
103  }  }
104    
105  /*************************************************************************/  /*************************************************************************/

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

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