Ignore:
Timestamp:
2008-06-15T12:28:42+02:00 (17 years ago)
Author:
ramack
Message:

patch by bruce89, closes #812; thanks bruce

Location:
trunk/src/org/openstreetmap/josm/io
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/MyHttpHandler.java

    r627 r655  
    2323            }
    2424            public MyHttpHandler(String proxy, int port) {
    25                 proxy = proxy;
     25                this.proxy = proxy;
    2626                proxyPort = port;
    2727            }
  • trunk/src/org/openstreetmap/josm/io/OsmServerObjectReader.java

    r653 r655  
    1818     
    1919     /**
    20       * Method to download single Objects from OSM server. ways, relations, nodes
    21       * @param id  Object ID
    22       * @param type  way node relation
     20      * Method to download single objects from OSM server. ways, relations, nodes
     21      * @param id Object ID
     22      * @param type way node relation
    2323      * @param full download with or without child objects
    24       * @return
     24      * @return the data requested
    2525      * @throws SAXException
    2626      * @throws IOException
    2727      */
    28      public DataSet parseOsm(long id,String type, boolean full ) throws SAXException, IOException {
     28     public DataSet parseOsm(long id, String type, boolean full) throws SAXException, IOException {
    2929            try {
    3030               
  • trunk/src/org/openstreetmap/josm/io/OsmServerReader.java

    r627 r655  
    2626         * Open a connection to the given url and return a reader on the input stream
    2727         * from that connection. In case of user cancel, return <code>null</code>.
    28          * @param url The exact url to connect to.
     28         * @param urlStr The exact url to connect to.
     29         * @param pleaseWaitDlg
    2930         * @return An reader reading the input stream (servers answer) or <code>null</code>.
    3031         */
Note: See TracChangeset for help on using the changeset viewer.