Changeset 25068


Ignore:
Timestamp:
06/18/20 20:03:50 (5 years ago)
Author:
jdquinn
Message:

BUG: Unbalanced parens; unclosed conditionals

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/classes/boundary.m

    r25065 r25068  
    9898                        label=getfieldvalue(options,'label','on');
    9999
    100                         if (exist(options,'epsg'),
    101                                 if exist(options,'proj')),
     100                        if exist(options,'epsg'),
     101                                if exist(options,'proj'),
    102102                                        error('Boundary plot error message: cannot specify epsg and proj at the same time for plot projection');
     103                                end
    103104                                proj=epsg2proj(getfieldvalue(options,'epsg'));
    104105                        elseif exist(options,'proj'),
     
    186187                        label=getfieldvalue(options,'label','on');
    187188
    188                         if (exist(options,'epsg'),
    189                                 if exist(options,'proj')),
     189                        if exist(options,'epsg'),
     190                                if exist(options,'proj'),
    190191                                        error('Boundary plot error message: cannot specify epsg and proj at the same time for plot projection');
     192                                end
    191193                                proj=epsg2proj(getfieldvalue(options,'epsg'));
    192194                        elseif exist(options,'proj'),
Note: See TracChangeset for help on using the changeset viewer.