Ignore:
Timestamp:
Oct 26, 2009, 3:16:29 PM (14 years ago)
Author:
gav
Message:

Format to 4 spaces, no tabs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/domain/Authority.groovy

    r147 r167  
    11class Authority {
    22
    3         static hasMany = [persons: Person]
     3    static hasMany = [persons: Person]
    44
    5         /** description */
    6         String description
    7         /** ROLE String */
    8         String authority
     5    /** description */
     6    String description
     7    /** ROLE String */
     8    String authority
    99
    10         static constraints = {
    11                 authority(blank: false, unique: true)
    12                 description()
    13         }
     10    static constraints = {
     11        authority(blank: false, unique: true)
     12        description()
     13    }
    1414
    1515    String toString() {
Note: See TracChangeset for help on using the changeset viewer.