Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 3588591f authored by Franz KOBER josef's avatar Franz KOBER josef
Browse files

comment out json writer class

parent c10e4943
No related branches found
No related tags found
No related merge requests found
......@@ -390,10 +390,10 @@ Public Class IEPCForm
iepc.SetDragCurveEntries(lvDragCurve)
If Not iepc.SaveFile(file) Then
MsgBox("Cannot save to " & file, MsgBoxStyle.Critical)
Return False
End If
'If Not iepc.SaveFile(file) Then
' MsgBox("Cannot save to " & file, MsgBoxStyle.Critical)
' Return False
'End If
_changed = False
LbStatus.Text = ""
......
......@@ -29,13 +29,13 @@ Public Class IEPCInputData
Public Function SaveFile(filePath As String) As Boolean
_filePath = filePath
Try
Dim writer = New JSONFileWriter()
writer.SaveIEPC(Me, filePath, Cfg.DeclMode)
Catch ex As Exception
MsgBox("Failed to write IEPC file: " + ex.Message)
Return False
End Try
'Try
' Dim writer = New JSONFileWriter()
' writer.SaveIEPC(Me, filePath, Cfg.DeclMode)
'Catch ex As Exception
' MsgBox("Failed to write IEPC file: " + ex.Message)
' Return False
'End Try
Return True
End Function
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment