Skip to content

Commit

Permalink
solved some conflicts between branches
Browse files Browse the repository at this point in the history
  • Loading branch information
omarsahl committed Dec 18, 2017
1 parent 63af913 commit b4205b7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/main/java/models/PerformanceMetrics.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ public class PerformanceMetrics {
private double W;
private double Wq;

public PerformanceMetrics(){};
public PerformanceMetrics() {
}

public PerformanceMetrics(double l, double lq, double w, double wq) {
L = l;
Lq = lq;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/models/QueueModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
public abstract class QueueModel {

/**
* Calls {@link #calculatePerformanceMetrics(double, double)} asynchronously by returning an {@link Observable}
* Calls {@link #calculatePerformanceMetrics(QueueSystemInput)} asynchronously by returning an {@link Observable}
* which can be observed on a background thread.
*
* @param input: the Queue System Input Variables
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/models/QueueType.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
* Date: 17-Dec-17.
*/
public enum QueueType {
DD1K, MM1, MMCK;
DD1K, MM1, MM1K, MMC, MMCK;
}
2 changes: 1 addition & 1 deletion src/main/java/ui/InputScreenController.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public void initView(QueueType queueName) {
showSystemCapacity = false;
showNumberOfServers = true;
break;
case MMK:
case MM1K:
showSystemCapacity = true;
showNumberOfServers = false;
break;
Expand Down

0 comments on commit b4205b7

Please sign in to comment.