pluto-container/src/main/java/org/apache/pluto/container/om/portlet/impl/JSR362ConfigurationProcessor.java [196:212]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   private List<DisplayName> handleDisplayNames(List<DisplayNameType> dispNames) {
      ArrayList<DisplayName> list = new ArrayList<DisplayName>();
      for (DisplayNameType dispName : dispNames) {

         if (dispName.getValue() == null) {
            String warning = "Bad display name - no display name value; will be ignored. continuing ...";
            LOG.warn(warning);
            continue;
         }

         Locale loc = deriveLocale(dispName.getLang());

         DisplayNameImpl d = new DisplayNameImpl(loc, dispName.getValue());
         list.add(d);
      }
      return list;
   }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



pluto-container/src/main/java/org/apache/pluto/container/om/portlet/impl/JSR286ConfigurationProcessor.java [182:198]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   private List<DisplayName> handleDisplayNames(List<DisplayNameType> dispNames) {
      ArrayList<DisplayName> list = new ArrayList<DisplayName>();
      for (DisplayNameType dispName : dispNames) {

         if (dispName.getValue() == null) {
            String warning = "Bad display name - no display name value; will be ignored. continuing ...";
            LOG.warn(warning);
            continue;
         }

         Locale loc = deriveLocale(dispName.getLang());

         DisplayNameImpl d = new DisplayNameImpl(loc, dispName.getValue());
         list.add(d);
      }
      return list;
   }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



pluto-container/src/main/java/org/apache/pluto/container/om/portlet/impl/JSR168ConfigurationProcessor.java [131:147]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   private List<DisplayName> handleDisplayNames(List<DisplayNameType> dispNames) {
      ArrayList<DisplayName> list = new ArrayList<DisplayName>();
      for (DisplayNameType dispName : dispNames) {

         if (dispName.getValue() == null) {
            String warning = "Bad display name - no display name value; will be ignored. continuing ...";
            LOG.warn(warning);
            continue;
         }

         Locale loc = deriveLocale(dispName.getLang());

         DisplayNameImpl d = new DisplayNameImpl(loc, dispName.getValue());
         list.add(d);
      }
      return list;
   }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



