From 4b75ccc54565a9c317f8f1f33790380ba32efabb Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Thu, 16 Aug 2007 00:22:53 +0000
Subject: [PATCH] Make a change to remove additional ambiguity among Messages.raw methods.  The version with arguments (Object, Object...) has been renamed to fromObject, as it may have been seen as a conflict with one or more other raw methods.  There was only a single existing use of the renamed method, and it has been updated.

---
 opends/src/quicksetup/org/opends/quicksetup/ui/UIFactory.java |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/opends/src/quicksetup/org/opends/quicksetup/ui/UIFactory.java b/opends/src/quicksetup/org/opends/quicksetup/ui/UIFactory.java
index 0d7391e..b5505b6 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/ui/UIFactory.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/ui/UIFactory.java
@@ -1694,7 +1694,8 @@
           boolean isSelected,
           boolean cellHasFocus)
       {
-        JLabel l = makeJLabel(IconType.NO_ICON, Message.raw(value), textStyle);
+        JLabel l = makeJLabel(IconType.NO_ICON, Message.fromObject(value),
+                              textStyle);
         l.setBorder(new EmptyBorder(TOP_INSET_SECONDARY_FIELD, 0, 0, 0));
         return l;
       }

--
Gitblit v1.10.0