Changeset 12073
- Timestamp:
- 02/25/15 16:50:17 (10 years ago)
- Location:
- branches/ALPS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ALPS
- Property svn:mergeinfo changed
/trunk/sources merged: 12072
- Property svn:mergeinfo changed
-
branches/ALPS/HeuristicLab.Operators/3.3/DataReducer.cs
r12018 r12073 127 127 break; 128 128 default: 129 throw new InvalidOperationException(string.Format("Operation {0} is not supported as ReductionOperation for type: {1}.", ReductionOperation. Value.Value, targetType));129 throw new InvalidOperationException(string.Format("Operation {0} is not supported as ReductionOperation for type: {1}.", ReductionOperation.ActualValue.Value, targetType)); 130 130 } 131 131 … … 157 157 break; 158 158 default: 159 throw new InvalidOperationException(string.Format("Operation {0} is not supported as TargetOperation for type: {1}.", TargetOperation. Value.Value, targetType));159 throw new InvalidOperationException(string.Format("Operation {0} is not supported as TargetOperation for type: {1}.", TargetOperation.ActualValue.Value, targetType)); 160 160 } 161 161 } … … 187 187 break; 188 188 default: 189 throw new InvalidOperationException(string.Format("Operation {0} is not supported as ReductionOperation for type: {1}.", ReductionOperation. Value.Value, targetType));189 throw new InvalidOperationException(string.Format("Operation {0} is not supported as ReductionOperation for type: {1}.", ReductionOperation.ActualValue.Value, targetType)); 190 190 } 191 191 … … 217 217 break; 218 218 default: 219 throw new InvalidOperationException(string.Format("Operation {0} is not supported as TargetOperation for type: {1}.", TargetOperation. Value.Value, targetType));219 throw new InvalidOperationException(string.Format("Operation {0} is not supported as TargetOperation for type: {1}.", TargetOperation.ActualValue.Value, targetType)); 220 220 } 221 221 } … … 241 241 break; 242 242 default: 243 throw new InvalidOperationException(string.Format("Operation {0} is not supported as ReductionOperation for type: {1}.", ReductionOperation. Value.Value, targetType));243 throw new InvalidOperationException(string.Format("Operation {0} is not supported as ReductionOperation for type: {1}.", ReductionOperation.ActualValue.Value, targetType)); 244 244 } 245 245 … … 267 267 break; 268 268 default: 269 throw new InvalidOperationException(string.Format("Operation {0} is not supported as TargetOperation for type: {1}.", TargetOperation. Value.Value, targetType));269 throw new InvalidOperationException(string.Format("Operation {0} is not supported as TargetOperation for type: {1}.", TargetOperation.ActualValue.Value, targetType)); 270 270 } 271 271 } … … 282 282 break; 283 283 default: 284 throw new InvalidOperationException(string.Format("Operation {0} is not supported as ReductionOperation for type: {1}.", ReductionOperation. Value.Value, targetType));284 throw new InvalidOperationException(string.Format("Operation {0} is not supported as ReductionOperation for type: {1}.", ReductionOperation.ActualValue.Value, targetType)); 285 285 } 286 286 … … 292 292 break; 293 293 default: 294 throw new InvalidOperationException(string.Format("Operation {0} is not supported as TargetOperation for type: {1}.", TargetOperation. Value.Value, targetType));294 throw new InvalidOperationException(string.Format("Operation {0} is not supported as TargetOperation for type: {1}.", TargetOperation.ActualValue.Value, targetType)); 295 295 } 296 296 }
Note: See TracChangeset
for help on using the changeset viewer.