Ignore:
Timestamp:
2017-06-02T17:37:25+12:00 (7 years ago)
Author:
ak19
Message:

Removed unnecessary comments. Emacs tabbing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/gli/src/org/greenstone/gatherer/download/DownloadScrollPane.java

    r31692 r31721  
    7979    }
    8080
    81     /**
    82     * To be used with DownloadJob.java's old_callDownload() and old_actionPerformed()
    83     * OR by uncommenting the "synchronized(this)" section in Download.java at the end of
    84     * its new callDownload() along with commenting out "mummy.deleteCurrentDownloadJob(this);"
    85     * in Download.java's doneCleanup().
    86     */
     81    /**
     82    * To be used with DownloadJob.java's old_callDownload() and old_actionPerformed()
     83    * OR by uncommenting the "synchronized(this)" section in Download.java at the end of
     84    * its new callDownload() along with commenting out "mummy.deleteCurrentDownloadJob(this);"
     85    * in Download.java's doneCleanup().
     86     */
    8787    public void old_deleteDownloadJob(DownloadJob delete_me) {
    8888    if (delete_me == job) {
     
    107107    }
    108108
    109     /**
    110     * If called to delete the current download job, this method won't do anything.
    111     * But if called on any inactive download job, its display is removed.
    112     */
     109    /**
     110    * If called to delete the current download job, this method won't do anything.
     111    * But if called on any inactive download job, its display is removed.
     112     */
    113113    public void deleteDownloadJob(DownloadJob delete_me) {
    114114    if (delete_me != job) {
     
    121121    }
    122122
    123     /**
    124     * To be called when we're ready to delete the current download job,
    125     * else this method won't do anything
    126     */
     123    /**
     124    * To be called when we're ready to delete the current download job,
     125    * else this method won't do anything
     126     */
    127127    public void deleteCurrentDownloadJob(DownloadJob delete_me) {
    128128    if (delete_me == job) {
Note: See TracChangeset for help on using the changeset viewer.