Skip to content

Fixed typo in package name #235

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import com.expedia.graphql.sample.exceptions.CustomDataFetcherExceptionHandler
import com.expedia.graphql.sample.extension.CustomSchemaGeneratorHooks
import com.expedia.graphql.sample.mutation.Mutation
import com.expedia.graphql.sample.query.Query
import com.expedia.graphql.sample.subscribtions.Subscription
import com.expedia.graphql.sample.subscriptions.Subscription
import com.expedia.graphql.toSchema
import graphql.GraphQL
import graphql.execution.AsyncExecutionStrategy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import com.fasterxml.jackson.databind.type.MapType
import com.fasterxml.jackson.databind.type.TypeFactory
import graphql.schema.GraphQLSchema
import graphql.schema.idl.SchemaPrinter
import org.slf4j.LoggerFactory
import org.springframework.beans.factory.annotation.Value
import org.springframework.context.annotation.Bean
import org.springframework.context.annotation.Configuration
Expand All @@ -28,7 +27,6 @@ class RoutesConfiguration(
@Value("classpath:/graphql-playground.html") private val playgroundHtml: Resource
) {

private val logger = LoggerFactory.getLogger(RoutesConfiguration::class.java)
private val mapTypeReference: MapType = TypeFactory.defaultInstance().constructMapType(HashMap::class.java, String::class.java, Any::class.java)

@Bean
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.expedia.graphql.sample.subscribtions
package com.expedia.graphql.sample.subscriptions

import com.expedia.graphql.annotations.GraphQLDescription
import org.springframework.stereotype.Component
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package com.expedia.graphql.sample.subscriptions

interface Subscription