Author: jleroux Date: Sat Dec 16 11:01:48 2017 New Revision: 1818381 URL: http://svn.apache.org/viewvc?rev=1818381&view=rev Log: No functional change, just trivial formatting.
I don't see why Buildbot is complaining on my last commit. Since I spotted a possible formatting improvement I commit it while waiting my machine to confirm locally that there is actually no tests issues. Easier than starting a new Buildbot build manually. Modified: ofbiz/ofbiz-framework/trunk/applications/accounting/src/main/java/org/apache/ofbiz/accounting/tax/TaxAuthorityServices.java Modified: ofbiz/ofbiz-framework/trunk/applications/accounting/src/main/java/org/apache/ofbiz/accounting/tax/TaxAuthorityServices.java URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/accounting/src/main/java/org/apache/ofbiz/accounting/tax/TaxAuthorityServices.java?rev=1818381&r1=1818380&r2=1818381&view=diff ============================================================================== --- ofbiz/ofbiz-framework/trunk/applications/accounting/src/main/java/org/apache/ofbiz/accounting/tax/TaxAuthorityServices.java (original) +++ ofbiz/ofbiz-framework/trunk/applications/accounting/src/main/java/org/apache/ofbiz/accounting/tax/TaxAuthorityServices.java Sat Dec 16 11:01:48 2017 @@ -88,7 +88,8 @@ public class TaxAuthorityServices { try { GenericValue product = EntityQuery.use(delegator) .from("Product") - .where("productId", productId).cache() + .where("productId", productId) + .cache() .queryOne(); GenericValue productStore = EntityQuery.use(delegator) .from("ProductStore")