Skip to content

Commit 78a8b80

Browse files
committed
Remove extra blank line from ...Schema.cpp
1 parent a377114 commit 78a8b80

File tree

6 files changed

+2
-9
lines changed

6 files changed

+2
-9
lines changed

samples/learn/schema/StarWarsSchema.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
#include "QueryObject.h"
77
#include "MutationObject.h"
88

9-
109
#include "graphqlservice/internal/Schema.h"
1110

1211
#include "graphqlservice/introspection/IntrospectionSchema.h"

samples/today/nointrospection/TodaySchema.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
#include "MutationObject.h"
88
#include "SubscriptionObject.h"
99

10-
1110
#include "graphqlservice/internal/Schema.h"
1211

1312
#include "graphqlservice/introspection/IntrospectionSchema.h"

samples/today/schema/TodaySchema.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
#include "MutationObject.h"
88
#include "SubscriptionObject.h"
99

10-
1110
#include "graphqlservice/internal/Schema.h"
1211

1312
#include "graphqlservice/introspection/IntrospectionSchema.h"

samples/validation/schema/ValidationSchema.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
#include "MutationObject.h"
88
#include "SubscriptionObject.h"
99

10-
1110
#include "graphqlservice/internal/Schema.h"
1211

1312
#include "graphqlservice/introspection/IntrospectionSchema.h"

src/SchemaGenerator.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1098,14 +1098,12 @@ bool Generator::outputSource() const noexcept
10981098

10991099
if (_loader.isIntrospection())
11001100
{
1101-
sourceFile << R"cpp(
1102-
#include "graphqlservice/internal/Introspection.h"
1101+
sourceFile << R"cpp(#include "graphqlservice/internal/Introspection.h"
11031102
)cpp";
11041103
}
11051104
else
11061105
{
1107-
sourceFile << R"cpp(
1108-
#include "graphqlservice/internal/Schema.h"
1106+
sourceFile << R"cpp(#include "graphqlservice/internal/Schema.h"
11091107
11101108
#include "graphqlservice/introspection/IntrospectionSchema.h"
11111109
)cpp";

src/introspection/IntrospectionSchema.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
// WARNING! Do not edit this file manually, your changes will be overwritten.
55

6-
76
#include "graphqlservice/internal/Introspection.h"
87

98
#include <algorithm>

0 commit comments

Comments
 (0)