refactor(pdf-burner): rename BurnInstantJSONAnnotationsToPDF to BurnAnnotsToPDF

- Updated method name to better reflect its functionality.
- No changes to logic or behavior; purely a rename for clarity.
This commit is contained in:
2025-10-23 13:36:32 +02:00
parent 8db5afae40
commit f0d101bb23
3 changed files with 3 additions and 4 deletions

View File

@@ -101,7 +101,7 @@ Public Class frmFinalizePDF
Dim envelopeId As Integer = CInt(txtEnvelope.Text)
Dim oBuffer As Byte() = ReadEnvelope(envelopeId)
Dim oNewBuffer = PDFBurner.BurnInstantJSONAnnotationsToPDF(oBuffer, oJsonList, envelopeId)
Dim oNewBuffer = PDFBurner.BurnAnnotsToPDF(oBuffer, oJsonList, envelopeId)
Dim desktopPath As String = Environment.GetFolderPath(Environment.SpecialFolder.Desktop)
Dim oNewPath = Path.Combine(desktopPath, $"E{txtEnvelope.Text}R{txtReceiver.Text}.burned.pdf")