From 108b0ec13fc82e3572e4b93c928125706cd1e9a2 Mon Sep 17 00:00:00 2001 From: efischer Date: Thu, 24 Feb 2022 12:42:09 -0600 Subject: [PATCH] Improve options menu wording --- src/main/java/InteractiveInterface.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/InteractiveInterface.java b/src/main/java/InteractiveInterface.java index f480e1e..e749090 100644 --- a/src/main/java/InteractiveInterface.java +++ b/src/main/java/InteractiveInterface.java @@ -496,10 +496,10 @@ public class InteractiveInterface { private static void options(){ boolean backToMain = false; while(!backToMain) { - System.out.println("--------------OPTIONS---------------"); - System.out.println("1) Turn cell sample file caching " + getOnOff(!BiGpairSEQ.cacheCells())); - System.out.println("2) Turn sample plate file caching " + getOnOff(!BiGpairSEQ.cachePlate())); - System.out.println("3) Turn graph/data file caching " + getOnOff(!BiGpairSEQ.cacheGraph())); + System.out.println("\n--------------OPTIONS---------------"); + System.out.println("1) Turn " + getOnOff(!BiGpairSEQ.cacheCells()) + " cell sample file caching"); + System.out.println("2) Turn " + getOnOff(!BiGpairSEQ.cachePlate()) + " plate file caching"); + System.out.println("3) Turn " + getOnOff(!BiGpairSEQ.cacheGraph()) + " graph/data file caching"); System.out.println("0) Return to main menu"); try { input = sc.nextInt();