Skip to content

Commit

Permalink
Minor consistency fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Oct 7, 2024
1 parent 8314da7 commit e9ca605
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import java.util.stream.IntStream;

@Singleton
class PyGalServiceMixed implements PyGalService {
public class PyGalServiceMixed implements PyGalService {
private final Value pythonFunctionXY;

PyGalServiceMixed(GraalPyContext graalPyContext) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


@Singleton
class PyGalServicePureJava implements PyGalService {
public class PyGalServicePureJava implements PyGalService {
private final PyGal pyGalModule;

PyGalServicePureJava(GraalPyContext graalPyContext) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import jakarta.inject.Singleton;

@Singleton
class PyGalServicePurePython implements PyGalService {
public class PyGalServicePurePython implements PyGalService {
private final String purePythonXY;

PyGalServicePurePython(GraalPyContext graalPyContext) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import java.util.stream.IntStream;

@Singleton
class PyGalServiceValueAPIDynamic implements PyGalService {
public class PyGalServiceValueAPIDynamic implements PyGalService {
private final Value pyGalModule;

PyGalServiceValueAPIDynamic(GraalPyContext context) {
Expand Down

0 comments on commit e9ca605

Please sign in to comment.