Example #1
0
 /**
  * Create the {@link ChangeParameterMetaData} "description" value. Uses the value on the
  * DatabaseChangeProperty annotation or returns null as a default.
  */
 @SuppressWarnings("UnusedParameters")
 protected String createDescriptionMetaData(
     String parameterName, DatabaseChangeProperty changePropertyAnnotation) {
   if (changePropertyAnnotation == null) {
     return null;
   }
   return StringUtils.trimToNull(changePropertyAnnotation.description());
 }