[Quantproject-developers] QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting Account
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-08-18 21:13:48
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12665/b4_Business/a1_Financial/a2_Accounting/h5_Reporting Modified Files: AccountReport.cs Log Message: - the code has been cleaned up to avoid warnings - standard indentation has been applied Index: AccountReport.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a1_Financial/a2_Accounting/h5_Reporting/AccountReport.cs,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** AccountReport.cs 6 Feb 2008 20:37:19 -0000 1.21 --- AccountReport.cs 18 Aug 2008 21:13:14 -0000 1.22 *************** *** 335,343 **** try { ! fieldInfo.SetValue( this , ! info.GetValue( fieldInfo.Name, fieldInfo.FieldType ) ); } - catch(Exception ex) - {ex = ex;} } } --- 335,346 ---- try { ! fieldInfo.SetValue( ! this , ! info.GetValue( fieldInfo.Name, fieldInfo.FieldType ) ); ! } ! catch (Exception ex) ! { ! string forBreakpoint = ex.Message; forBreakpoint = forBreakpoint + ""; } } } |