Skip to content

Commit b016c20

Browse files
committed
nunfunctional code changes
1 parent 1de8673 commit b016c20

File tree

2 files changed

+18
-16
lines changed

2 files changed

+18
-16
lines changed

PdfAValidator/report.cs

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[System.ComponentModel.DesignerCategoryAttribute("code")]
66
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
77
[System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = false)]
8-
public partial class report
8+
public class report
99
{
1010
private reportReleaseDetails[] buildInformationField;
1111

@@ -58,7 +58,7 @@ public reportBatchSummary batchSummary
5858
[System.SerializableAttribute()]
5959
[System.ComponentModel.DesignerCategoryAttribute("code")]
6060
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
61-
public partial class reportReleaseDetails
61+
public class reportReleaseDetails
6262
{
6363
private string idField;
6464

@@ -113,7 +113,7 @@ public System.DateTime buildDate
113113
[System.SerializableAttribute()]
114114
[System.ComponentModel.DesignerCategoryAttribute("code")]
115115
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
116-
public partial class reportJobs
116+
public class reportJobs
117117
{
118118
private reportJobsJob jobField;
119119

@@ -135,7 +135,7 @@ public reportJobsJob job
135135
[System.SerializableAttribute()]
136136
[System.ComponentModel.DesignerCategoryAttribute("code")]
137137
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
138-
public partial class reportJobsJob
138+
public class reportJobsJob
139139
{
140140
private reportJobsJobItem itemField;
141141

@@ -187,7 +187,7 @@ public reportJobsJobDuration duration
187187
[System.SerializableAttribute()]
188188
[System.ComponentModel.DesignerCategoryAttribute("code")]
189189
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
190-
public partial class reportJobsJobItem
190+
public class reportJobsJobItem
191191
{
192192
private string nameField;
193193

@@ -225,7 +225,7 @@ public string size
225225
[System.SerializableAttribute()]
226226
[System.ComponentModel.DesignerCategoryAttribute("code")]
227227
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
228-
public partial class reportJobsJobValidationReport
228+
public class reportJobsJobValidationReport
229229
{
230230
private reportJobsJobValidationReportDetails detailsField;
231231

@@ -295,7 +295,7 @@ public bool isCompliant
295295
[System.SerializableAttribute()]
296296
[System.ComponentModel.DesignerCategoryAttribute("code")]
297297
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
298-
public partial class reportJobsJobValidationReportDetails
298+
public class reportJobsJobValidationReportDetails
299299
{
300300
private string passedRulesField;
301301

@@ -366,7 +366,7 @@ public string failedChecks
366366
[System.SerializableAttribute()]
367367
[System.ComponentModel.DesignerCategoryAttribute("code")]
368368
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
369-
public partial class reportJobsJobDuration
369+
public class reportJobsJobDuration
370370
{
371371
private ulong startField;
372372

@@ -421,7 +421,7 @@ public System.DateTime Value
421421
[System.SerializableAttribute()]
422422
[System.ComponentModel.DesignerCategoryAttribute("code")]
423423
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
424-
public partial class reportBatchSummary
424+
public class reportBatchSummary
425425
{
426426
private reportBatchSummaryValidationReports validationReportsField;
427427

@@ -536,7 +536,7 @@ public string encrypted
536536
[System.SerializableAttribute()]
537537
[System.ComponentModel.DesignerCategoryAttribute("code")]
538538
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
539-
public partial class reportBatchSummaryValidationReports
539+
public class reportBatchSummaryValidationReports
540540
{
541541
private string compliantField;
542542

@@ -589,7 +589,7 @@ public string failedJobs
589589
}
590590

591591
/// <remarks/>
592-
[System.Xml.Serialization.XmlTextAttribute()]
592+
[System.Xml.Serialization.XmlTextAttribute]
593593
public string Value
594594
{
595595
get
@@ -607,7 +607,7 @@ public string Value
607607
[System.SerializableAttribute()]
608608
[System.ComponentModel.DesignerCategoryAttribute("code")]
609609
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
610-
public partial class reportBatchSummaryFeatureReports
610+
public class reportBatchSummaryFeatureReports
611611
{
612612
private string failedJobsField;
613613

@@ -628,7 +628,7 @@ public string failedJobs
628628
}
629629

630630
/// <remarks/>
631-
[System.Xml.Serialization.XmlTextAttribute()]
631+
[System.Xml.Serialization.XmlTextAttribute]
632632
public string Value
633633
{
634634
get
@@ -646,7 +646,7 @@ public string Value
646646
[System.SerializableAttribute()]
647647
[System.ComponentModel.DesignerCategoryAttribute("code")]
648648
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
649-
public partial class reportBatchSummaryRepairReports
649+
public class reportBatchSummaryRepairReports
650650
{
651651
private string failedJobsField;
652652

@@ -667,7 +667,7 @@ public string failedJobs
667667
}
668668

669669
/// <remarks/>
670-
[System.Xml.Serialization.XmlTextAttribute()]
670+
[System.Xml.Serialization.XmlTextAttribute]
671671
public string Value
672672
{
673673
get
@@ -685,7 +685,7 @@ public string Value
685685
[System.SerializableAttribute()]
686686
[System.ComponentModel.DesignerCategoryAttribute("code")]
687687
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
688-
public partial class reportBatchSummaryDuration
688+
public class reportBatchSummaryDuration
689689
{
690690
private ulong startField;
691691

PdfAValidatorWebApi/FileUploadOperation.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,14 @@ public void Apply(Operation operation, OperationFilterContext context)
8080
}
8181

8282
foreach (var formFileParameter in formFileParameterNames)
83+
{
8384
parameters.Add(new NonBodyParameter()
8485
{
8586
Name = formFileParameter,
8687
Type = "file",
8788
In = "formData"
8889
});
90+
}
8991
}
9092
}
9193
}

0 commit comments

Comments
 (0)