Skip to content
This repository has been archived by the owner on Dec 13, 2024. It is now read-only.

Commit

Permalink
Merge pull request #12 from moderneinc/refactor/add-a-blank-line-arou…
Browse files Browse the repository at this point in the history
…nd-fields-with-annotations

refactor: Add a blank line around fields with annotations
  • Loading branch information
jkschneider authored Jun 12, 2024
2 parents a123304 + 4ca3737 commit ea673c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/org/openrewrite/csharp/Wasm.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ final class Wasm {

@Nullable
private WasiCtx wasi;

private Store<?> store;
private Linker linker;
private Engine engine;
Expand Down Expand Up @@ -118,8 +119,10 @@ static class Heap {
Store<?> store;
Memory memory;
Linker linker;

@PackagePrivate
int base;

int size;

static Heap create(Store<?> store, Memory memory, Linker linker, int size) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
public class ProjectDependencies implements Marker {
@EqualsAndHashCode.Exclude
UUID id;

String projectFile;
List<Map<String, Object>> dependencies;
}

0 comments on commit ea673c2

Please sign in to comment.