Changeset 27374 for main/trunk


Ignore:
Timestamp:
2013-05-21T14:43:21+12:00 (11 years ago)
Author:
jmt12
Message:

Changing my comment style as I stumbled across a much nicer/clearer way of doing comment blocks than shoehorning in Javadoc ones

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/perllib/util.pm

    r27326 r27374  
    12621262
    12631263
    1264 # /** @function augmentINC()
    1265 #  * Prepend a path (if it exists) onto INC but only if it isn't already in
    1266 * INC
    1267 * @param $new_path The path to add as necessary
    1268 * @author jmt12
    1269 #  */
     1264## @function augmentINC()
     1265#
     1266Prepend a path (if it exists) onto INC but only if it isn't already in INC
     1267@param $new_path The path to add
     1268@author jmt12
     1269#
    12701270sub augmentINC
    12711271{
    12721272  my ($new_path) = @_;
    12731273  my $did_add_path = 0;
    1274   # will need to be replaced with FileUtils::directoryExists() call eventually
     1274  # might need to be replaced with FileUtils::directoryExists() call eventually
    12751275  if (-d $new_path)
    12761276  {
     
    12921292  return $did_add_path;
    12931293}
    1294 # /** augmentINC($new_path) **/
     1294## augmentINC()
     1295
    12951296
    129612971;
Note: See TracChangeset for help on using the changeset viewer.