svn commit: r543907 - /ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/invoice/InvoiceWorker.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r543907 - /ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/invoice/InvoiceWorker.java

jacopoc
Author: jacopoc
Date: Sun Jun  3 07:41:55 2007
New Revision: 543907

URL: http://svn.apache.org/viewvc?view=rev&rev=543907
Log:
Formatting cleanups; no functional changes.

Modified:
    ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/invoice/InvoiceWorker.java

Modified: ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/invoice/InvoiceWorker.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/invoice/InvoiceWorker.java?view=diff&rev=543907&r1=543906&r2=543907
==============================================================================
--- ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/invoice/InvoiceWorker.java (original)
+++ ofbiz/trunk/applications/accounting/src/org/ofbiz/accounting/invoice/InvoiceWorker.java Sun Jun  3 07:41:55 2007
@@ -130,11 +130,11 @@
      * @param invoice GenericValue object of the Invoice
      * @return the invoice total as double
      */
-        public static double getInvoiceTotal(GenericValue invoice) {
-            return getInvoiceTotalBd(invoice).doubleValue();
-        }
+    public static double getInvoiceTotal(GenericValue invoice) {
+        return getInvoiceTotalBd(invoice).doubleValue();
+    }
         
-        public static BigDecimal getInvoiceTotalBd(GenericValue invoice) {
+    public static BigDecimal getInvoiceTotalBd(GenericValue invoice) {
         BigDecimal invoiceTotal = ZERO;
         BigDecimal invoiceTaxTotal = ZERO;
         List invoiceItems = null;