From 6567ba2c52753899e13670f16e443182716f4eb8 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Sat, 7 Feb 2009 13:34:20 +0000 Subject: [PATCH] Minor harmless refactoring - change comments - drop unused variables - add serialVersionUID --- base/src/org/compiere/model/MBPartnerLocation.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/base/src/org/compiere/model/MBPartnerLocation.java b/base/src/org/compiere/model/MBPartnerLocation.java index d0c91e75c3..12e37e0e0c 100644 --- a/base/src/org/compiere/model/MBPartnerLocation.java +++ b/base/src/org/compiere/model/MBPartnerLocation.java @@ -1,5 +1,5 @@ /****************************************************************************** - * Product: Adempiere ERP & CRM Smart Business Solution * + * Product: Adempiere ERP & CRM Smart Business Solution * * Copyright (C) 1999-2006 ComPiere, Inc. All Rights Reserved. * * This program is free software; you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * @@ -34,6 +34,12 @@ import org.compiere.util.DB; */ public class MBPartnerLocation extends X_C_BPartner_Location { + /** + * + */ + private static final long serialVersionUID = 2563622950216844404L; + + /** * Get Locations for BPartner * @param ctx context @@ -89,7 +95,6 @@ public class MBPartnerLocation extends X_C_BPartner_Location setIsPayFrom (true); setIsBillTo (true); } - this.trxName = trxName; } // MBPartner_Location /** @@ -110,11 +115,9 @@ public class MBPartnerLocation extends X_C_BPartner_Location * @param rs current row of result set to be loaded * @param trxName transaction */ - private String trxName = null; public MBPartnerLocation (Properties ctx, ResultSet rs, String trxName) { super(ctx, rs, trxName); - this.trxName = trxName; } // MBPartner_Location /** Cached Location */