diff --git a/execute_java b/execute_java index 7348316..26ec60b 100644 --- a/execute_java +++ b/execute_java @@ -1,11 +1,5 @@ #!/usr/bin/env bash for file in "${CHANGED_FILES[@]}"; do - declare out - out="$(io_tests "java \${FILE_PATH}" "${file}")" - echo "${out}" - # run main class only iff no iotests (for now) - if [[ -z "${out}" ]] && grep -q "static void main" "${WORKING_DIR}/${file}"; then - java "${WORKING_DIR}/${file}" - fi + java "${WORKING_DIR}/${file}" done