Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/publish-javadoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- develop # Only publish when pushing to develop branch
pull_request:
branches: [ "main", "develop" ]

jobs:
publish-javadoc:
Expand All @@ -29,6 +31,7 @@ jobs:
run: mvn javadoc:javadoc --file pom.xml

- name: Deploy Javadoc to branch
if: github.event.push
uses: MathieuSoysal/Javadoc-publisher.yml@v3.0.2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
/**
*
* CLASS TO MANAGE TRANSLATION OF CSV DATA FROM EUROMOD TO DATABASE FOR DONORS USED TO IMPUTE TAX AND BENEFIT PAYMENTS
* csv data are processed and saved to the DONORPERSON_<country code> table in the relational database. These data
* are used as working variables to construct the DONORTAXUNIT_<country code> table, which is then used exclusively \
* csv data are processed and saved to the DONORPERSON_{country code} table in the relational database. These data
* are used as working variables to construct the DONORTAXUNIT_{country code} table, which is then used exclusively \
* for imputing tax and benefit payments, drawing heavily on SQL calls made via Hibernate
*
*/
Expand Down Expand Up @@ -421,7 +421,6 @@ public static String stringAppender(Collection<String> strings) {
* output .txt files, picking up the relevant columns for each EUROMOD policy scenario, that
* will eventually be parsed into the JAS-mine input database.
*
* @return The name of the created CSV file (without the .csv extension)
*
*/
public static void constructAggregateTaxDonorPopulationCSVfile(Country country, boolean showGui) {
Expand Down