Skip to content

Commit de0a780

Browse files
committed
Updated introspection comment to not include the current date to avoid unnecessary changes to checked-in remote schemas (#164)
1 parent 2d0b8ad commit de0a780

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/com/intellij/lang/jsgraphql/ide/editor/GraphQLIntrospectionHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ void createOrUpdateIntrospectionOutputFile(String schemaText, IntrospectionOutpu
428428
final String header;
429429
switch (format) {
430430
case SDL:
431-
header = "# This file was generated based on \"" + introspectionSourceFile.getName() + "\" at " + new Date() + ". Do not edit manually.\n\n";
431+
header = "# This file was generated based on \"" + introspectionSourceFile.getName() + "\". Do not edit manually.\n\n";
432432
break;
433433
case JSON:
434434
header = "";

0 commit comments

Comments
 (0)