Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
starkda committed Apr 2, 2024
1 parent ddce255 commit b4cf48b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/mvn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name: mvn
jobs:
maven-build:
runs-on: ${{ matrix.os }}
timeout-minutes: 60
timeout-minutes: 180
strategy:
matrix:
os: [ubuntu-22.04, windows-latest, macos-latest]
Expand Down
1 change: 1 addition & 0 deletions src/main/java/org/jpeek/calculus/java/Ccm.java
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ private static String getParent(final String node, final Map<String, String> par
while (!parents.get(ancestor).equals(ancestor)) {
ancestor = parents.get(ancestor);
}
parents.put(node, ancestor);
return ancestor;
}

Expand Down

0 comments on commit b4cf48b

Please sign in to comment.