diff --git a/src/main/java/se/su/dsv/scipro/match/GreedyMatchingAlgorithm.java b/src/main/java/se/su/dsv/scipro/match/GreedyMatchingAlgorithm.java
index e0e08fc488..1b3cb9f002 100644
--- a/src/main/java/se/su/dsv/scipro/match/GreedyMatchingAlgorithm.java
+++ b/src/main/java/se/su/dsv/scipro/match/GreedyMatchingAlgorithm.java
@@ -207,7 +207,6 @@ public class GreedyMatchingAlgorithm implements MatchingAlgorithm {
      * is added to Availability#getAvailability (int) for bachelor for each supervisor, this total availability is considered when
      * matching project ideas to supervisors
      * @param pairList all the matches that is produced, represented as instances of the class Pair
-     * @return
      */
     private void calculateTotalAvailability(List<Pair> pairList) {
         for(Pair ourMatch : pairList) {