Skip to content

Commit 66218a0

Browse files
committed
Wrap IOException as an UncheckedIOException
1 parent 3de625e commit 66218a0

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package graphql.servlet;
2+
3+
public abstract class SimpleAbstractGraphQLServlet extends AbstractGraphQLHttpServlet {
4+
5+
@Override
6+
protected GraphQLQueryInvoker getQueryInvoker() {
7+
return null;
8+
}
9+
10+
@Override
11+
protected GraphQLInvocationInputFactory getInvocationInputFactory() {
12+
return null;
13+
}
14+
15+
@Override
16+
protected GraphQLObjectMapper getGraphQLObjectMapper() {
17+
return null;
18+
}
19+
20+
}

travis-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "${TRAVIS_BRANCH}" = "master" ];
2020
if [ "${RELEASE}" = "true" ]; then
2121
echo "Deploying release to Bintray"
2222
./gradlew clean assemble release -Prelease.useAutomaticVersion=true && ./gradlew check --info
23-
elif
23+
else
2424
echo "Deploying snapshot to Bintray"
2525
./gradlew clean assemble bintrayPublish && ./gradlew check --info
2626
fi

0 commit comments

Comments
 (0)