Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
${someVar ?: 'valueIfNull'}

GSH does not like array constructors

Code Block
FROM
Object[] row = new Object[] {emailFromOutsystems, pennkeyPerhaps};

TO
Object[] row = new Object[2];
row[0] = emailFromOutsystems;
row[1] = pennkeyPerhaps;


API Compability

gsh is now a core part of the Grouper API and so is always compatible with the current release.

...