Skip to content

Commit

Permalink
Bump jasm
Browse files Browse the repository at this point in the history
  • Loading branch information
Col-E committed Aug 28, 2024
1 parent e113d14 commit 6c2c79c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ image-io-ext-ico = "3.0.2"
instrument-server = "1.4.2"
jackson = "2.17.1"
jakarta-annotation = "3.0.0"
jasm = "f61f0e5813"
jasm = "bd1c3e7a0d"
jlinker = "1.0.7"
jphantom = "1.4.4"
junit = "5.10.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ public class AssemblerPane extends AbstractContentPane<PathNode<?>> implements U

private final AssemblerPipelineManager pipelineManager;
private final AssemblerToolTabs assemblerToolTabs;
private final SideTabsInjector sideTabsInjector;
private final ProblemTracking problemTracking = new ProblemTracking();
private final Editor editor = new Editor();
private final AtomicBoolean updateLock = new AtomicBoolean();
Expand All @@ -85,7 +84,6 @@ public AssemblerPane(@Nonnull AssemblerPipelineManager pipelineManager,
@Nonnull SideTabsInjector sideTabsInjector) {
this.pipelineManager = pipelineManager;
this.assemblerToolTabs = assemblerToolTabs;
this.sideTabsInjector = sideTabsInjector;

int timeToWait = pipelineManager.getServiceConfig().getDisassemblyAstParseDelay().getValue();

Expand Down Expand Up @@ -485,6 +483,8 @@ private CompletableFuture<Void> assembleAndUpdateWorkspace() {
updateLock.set(true);
try {
Bundle<ClassInfo> bundle = path.getValueOfType(Bundle.class);
if (bundle == null)
throw new IllegalStateException("Bundle not included in assembler pane's path");
bundle.put(lastAssembledClass);
FxThreadUtil.run(() -> Animations.animateSuccess(editor, 1000));
} catch (Throwable t) {
Expand Down

0 comments on commit 6c2c79c

Please sign in to comment.