Skip to content

Commit 81fa889

Browse files
committed
Fix missing path
1 parent b7be06c commit 81fa889

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Core/JavaArchive.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public function getEntryPointName(): ?string
128128
public function getClassPaths(): array
129129
{
130130
$classPaths = [];
131-
foreach (explode(' ', $this->manifestData['class-path'] ?? []) as $path) {
131+
foreach (explode(' ', $this->manifestData['class-path'] ?? []) as $path) {
132132
if (empty($path)) {
133133
continue;
134134
}

0 commit comments

Comments
 (0)