You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by pa...@apache.org on 2020/05/09 15:42:27 UTC

[ofbiz-framework] branch trunk updated: Removed: Unnecessay code added to fix the middle name issue on List party screen (OFBIZ-11681)

This is an automated email from the ASF dual-hosted git repository.

pawan pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 2647c99  Removed: Unnecessay code added to fix the middle name issue on List party screen (OFBIZ-11681)
2647c99 is described below

commit 2647c9975202767afabd16131c1b17d497dff898
Author: Pawan Verma <pa...@hotwaxsystems.com>
AuthorDate: Sat May 9 21:12:08 2020 +0530

    Removed: Unnecessay code added to fix the middle name issue on List party screen
    (OFBIZ-11681)
---
 .../party/src/main/java/org/apache/ofbiz/party/party/PartyHelper.java  | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/applications/party/src/main/java/org/apache/ofbiz/party/party/PartyHelper.java b/applications/party/src/main/java/org/apache/ofbiz/party/party/PartyHelper.java
index 507e7bf..69c49c2 100644
--- a/applications/party/src/main/java/org/apache/ofbiz/party/party/PartyHelper.java
+++ b/applications/party/src/main/java/org/apache/ofbiz/party/party/PartyHelper.java
@@ -87,9 +87,6 @@ public class PartyHelper {
                     if (partyValue.getString("firstName") != null) {
                         result.append(", ");
                     }
-                    if (partyValue.getString("middleName") != null) {
-                        result.append(" ");
-                    }
                 }
                 result.append(UtilFormatOut.checkNull(partyValue.getString("firstName")));
                 if (partyValue.getString("middleName") != null) {