Skip to content

Commit

Permalink
Fix inconsistent source files indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
wax911 committed Apr 8, 2021
1 parent 7c94b0a commit 0b7962a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import retrofit2.Converter
* GraphQL request body converter and injector, uses method annotation for a given retrofit method
*/
open class GraphRequestConverter(
protected val methodAnnotations: Array<out Annotation>,
protected val graphProcessor: AbstractGraphProcessor,
protected val gson: Gson
protected val methodAnnotations: Array<out Annotation>,
protected val graphProcessor: AbstractGraphProcessor,
protected val gson: Gson
) : Converter<QueryContainerBuilder, RequestBody> {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import java.lang.reflect.Type
* resulting in a smaller generic tree for requests
*/
open class GraphResponseConverter<T>(
protected val type: Type?,
protected val gson: Gson
protected val type: Type?,
protected val gson: Gson
) : Converter<ResponseBody, T> {

/**
Expand Down

0 comments on commit 0b7962a

Please sign in to comment.