In groovy what does backslash means at the end of line? Specifically what is the sense in the next code from kickstart grails plugin?:
dateFormat = messageSource.getMessage("default.date.format",null,'mm/dd/yyyy',LocaleContextHolder.locale )\
.replace('z', '').replace('Z', '')\
.replace('h', '').replace('H', '')\
.replace('k', '').replace('K', '')\
.replace('w', '').replace('W', '')\
.replace('s', '').replace('S', '')\
.replace('m', '').replace('a', '').replace('D', '').replace('E', '').replace('F', '').replace('G', '').replace(':', '')\
.replace('MMM', 'MM').replace('ddd', 'dd')\
.trim()\
.toLowerCase()