~ubuntu-branches/ubuntu/utopic/jetty/utopic-proposed

« back to all changes in this revision

Viewing changes to modules/util/src/main/java/org/mortbay/thread/QueuedThreadPool.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2010-04-29 07:36:43 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20100429073643-eo2x6y2fit4m6o66
Tags: 6.1.24-2
* Set JAVA_HOME in d/rules to /usr/lib/jvm/default-java. (Closes: #578618,
  #579469)
* Fix the installation of jetty-util5.jar. (Closes: #569328)

Show diffs side-by-side

added added

removed removed

Lines of Context:
588
588
                        if (_queued>0)
589
589
                        {
590
590
                            _queued--;
591
 
                            job=_jobs[_nextJob++];
 
591
                            job=_jobs[_nextJob];
 
592
                            _jobs[_nextJob++]=null;
592
593
                            if (_nextJob==_jobs.length)
593
594
                                _nextJob=0;
594
595
                            continue;