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

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

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

Pawan Verma-2
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 <[hidden email]>
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) {