Merge pull request #3139 from daisyxchen/STORM-3231

STORM-3231: Fix comment for TopologyBySubmissionTimeComparator function
diff --git a/storm-server/src/main/java/org/apache/storm/scheduler/resource/strategies/priority/FIFOSchedulingPriorityStrategy.java b/storm-server/src/main/java/org/apache/storm/scheduler/resource/strategies/priority/FIFOSchedulingPriorityStrategy.java
index 0076c75..29a0584 100644
--- a/storm-server/src/main/java/org/apache/storm/scheduler/resource/strategies/priority/FIFOSchedulingPriorityStrategy.java
+++ b/storm-server/src/main/java/org/apache/storm/scheduler/resource/strategies/priority/FIFOSchedulingPriorityStrategy.java
@@ -55,8 +55,7 @@
     }
 
     /**
-     * Comparator that sorts topologies by priority and then by submission time.
-     * First sort by Topology Priority, if there is a tie for topology priority, topology uptime is used to sort.
+     * Comparator that sorts topologies by submission time.
      */
     private static class TopologyBySubmissionTimeComparator implements Comparator<TopologyDetails> {