pluto-container/src/main/java/org/apache/pluto/container/om/portlet/impl/JSR362ConfigurationProcessor.java [217:233]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   private List<Description> handleDescriptions(List<DescriptionType> descs) {
      ArrayList<Description> list = new ArrayList<Description>();
      for (DescriptionType desc : descs) {

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

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

         DescriptionImpl d = new DescriptionImpl(loc, desc.getValue());
         list.add(d);
      }
      return list;
   }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



pluto-container/src/main/java/org/apache/pluto/container/om/portlet/impl/JSR286ConfigurationProcessor.java [203:219]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   private List<Description> handleDescriptions(List<DescriptionType> descs) {
      ArrayList<Description> list = new ArrayList<Description>();
      for (DescriptionType desc : descs) {

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

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

         DescriptionImpl d = new DescriptionImpl(loc, desc.getValue());
         list.add(d);
      }
      return list;
   }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



pluto-container/src/main/java/org/apache/pluto/container/om/portlet/impl/JSR168ConfigurationProcessor.java [152:168]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   private List<Description> handleDescriptions(List<DescriptionType> descs) {
      ArrayList<Description> list = new ArrayList<Description>();
      for (DescriptionType desc : descs) {

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

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

         DescriptionImpl d = new DescriptionImpl(loc, desc.getValue());
         list.add(d);
      }
      return list;
   }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



