Skip to content

Commit b3ee57f

Browse files
committed
Follow styleguide for previous code
As noted by mr. Fry in PR processing#678 and issue processing#684
1 parent cbbb878 commit b3ee57f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/src/processing/mode/java/lsp/PdeTextDocumentService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public CompletableFuture<Either<List<? extends Location>, List<? extends Locatio
106106
Optional<PdeAdapter> adapterOptional =
107107
pls.getAdapter(uri);
108108

109-
if(adapterOptional.isEmpty()){
109+
if (adapterOptional.isEmpty()) {
110110
System.out.println("pde adapter not found");
111111
return CompletableFutures.computeAsync(_x -> Either
112112
.forLeft(Collections.emptyList()));
@@ -117,7 +117,7 @@ public CompletableFuture<Either<List<? extends Location>, List<? extends Locatio
117117
Optional<Integer> optionalJavaOffset = adapter.findJavaOffset(uri,
118118
lineNumber, colNumber);
119119

120-
if(optionalJavaOffset.isEmpty()){
120+
if (optionalJavaOffset.isEmpty()) {
121121
System.out.println("javaOffset not found");
122122
return CompletableFutures.computeAsync(_x -> Either
123123
.forLeft(Collections.emptyList()));

0 commit comments

Comments
 (0)