From 91a7e6cc2068885c62d153ca81945b4eec330266 Mon Sep 17 00:00:00 2001 From: Mitch Gaffigan Date: Mon, 11 Aug 2025 11:35:41 -0500 Subject: [PATCH] Update NCPDP display name to specify the name of the standard, not just the standards body Signed-off-by: Mitch Gaffigan --- .../plugins/datatypes/ncpdp/NCPDPDataTypeClientPlugin.java | 2 +- .../datatypes/ncpdp/NCPDPDataTypeCodeTemplatePlugin.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/com/mirth/connect/plugins/datatypes/ncpdp/NCPDPDataTypeClientPlugin.java b/client/src/com/mirth/connect/plugins/datatypes/ncpdp/NCPDPDataTypeClientPlugin.java index 472eef9a73..da74b536fc 100644 --- a/client/src/com/mirth/connect/plugins/datatypes/ncpdp/NCPDPDataTypeClientPlugin.java +++ b/client/src/com/mirth/connect/plugins/datatypes/ncpdp/NCPDPDataTypeClientPlugin.java @@ -26,7 +26,7 @@ public NCPDPDataTypeClientPlugin(String name) { @Override public String getDisplayName() { - return "NCPDP"; + return "NCPDP Telecom"; } @Override diff --git a/client/src/com/mirth/connect/plugins/datatypes/ncpdp/NCPDPDataTypeCodeTemplatePlugin.java b/client/src/com/mirth/connect/plugins/datatypes/ncpdp/NCPDPDataTypeCodeTemplatePlugin.java index 74594f65f3..ef4875596e 100644 --- a/client/src/com/mirth/connect/plugins/datatypes/ncpdp/NCPDPDataTypeCodeTemplatePlugin.java +++ b/client/src/com/mirth/connect/plugins/datatypes/ncpdp/NCPDPDataTypeCodeTemplatePlugin.java @@ -25,6 +25,6 @@ protected DataTypeDelegate getDataTypeDelegate() { @Override protected String getDisplayName() { - return "NCPDP"; + return "NCPDP Telecom"; } }