[jsword-svn] common/java/core/org/crosswire/common/progress s

jswordcvs at crosswire.org jswordcvs at crosswire.org
Sun May 8 18:28:45 MST 2005


Update of /cvs/jsword/common/java/core/org/crosswire/common/progress
In directory www.crosswire.org:/tmp/cvs-serv5945/java/core/org/crosswire/common/progress

Modified Files:
	Job.java 
Log Message:
Moved unused code to limbo.
Upgraded support-tools: checkstyle, pmd and findbugs to most recent.
Addressed over 100 issues reported by findbugs and checkstyle.
Resulted in major refactoring of GBFFilter.
Net result is that code size is significantly smaller.

Index: Job.java
===================================================================
RCS file: /cvs/jsword/common/java/core/org/crosswire/common/progress/Job.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** Job.java	1 Apr 2005 17:09:33 -0000	1.11
--- Job.java	9 May 2005 01:28:42 -0000	1.12
***************
*** 174,178 ****
       * Accessor for the job description
       */
!     public String getStateDescription()
      {
          return statedesc;
--- 174,178 ----
       * Accessor for the job description
       */
!     public synchronized String getStateDescription()
      {
          return statedesc;
***************
*** 227,231 ****
       * @return The estimated progress
       */
!     public int getPercent()
      {
          return guessedpc;
--- 227,231 ----
       * @return The estimated progress
       */
!     public synchronized int getPercent()
      {
          return guessedpc;
***************
*** 236,240 ****
       * @return The last reported progress
       */
!     public int getReportedPercent()
      {
          return reportedpc;
--- 236,240 ----
       * @return The last reported progress
       */
!     public synchronized int getReportedPercent()
      {
          return reportedpc;



More information about the jsword-svn mailing list