Skip to content

Commit 5768012

Browse files
committed
fix style
1 parent 92c38d5 commit 5768012

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/SocketModuleBuiltins.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,19 +80,19 @@ Object socket(LazyPythonClass cls, @SuppressWarnings("unused") PNone family, @Su
8080

8181
@Specialization(guards = {"isNoValue(type)", "isNoValue(proto)", "isNoValue(fileno)"})
8282
Object socket(LazyPythonClass cls, Object family, @SuppressWarnings("unused") PNone type, @SuppressWarnings("unused") PNone proto, @SuppressWarnings("unused") PNone fileno,
83-
@Cached CastToIndexNode cast) {
83+
@Cached CastToIndexNode cast) {
8484
return createSocketInternal(cls, cast.execute(family), PSocket.SOCK_STREAM, 0);
8585
}
8686

8787
@Specialization(guards = {"isNoValue(proto)", "isNoValue(fileno)"})
8888
Object socket(LazyPythonClass cls, Object family, Object type, @SuppressWarnings("unused") PNone proto, @SuppressWarnings("unused") PNone fileno,
89-
@Cached CastToIndexNode cast) {
89+
@Cached CastToIndexNode cast) {
9090
return createSocketInternal(cls, cast.execute(family), cast.execute(type), 0);
9191
}
9292

9393
@Specialization(guards = {"isNoValue(fileno)"})
9494
Object socket(LazyPythonClass cls, Object family, Object type, Object proto, @SuppressWarnings("unused") PNone fileno,
95-
@Cached CastToIndexNode cast) {
95+
@Cached CastToIndexNode cast) {
9696
return createSocketInternal(cls, cast.execute(family), cast.execute(type), cast.execute(proto));
9797
}
9898

0 commit comments

Comments
 (0)