Commit 2599b857 authored by Joe Robinson's avatar Joe Robinson
Browse files

Removed pipe at start of display for additional pages

parent fd7d8595
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
......@@ -32,7 +32,7 @@ public class blasearch {
{
String query = "";
String version = "v1.5.1";
String version = "v1.5.2";
/* Build query from query or arguments, depending on whether
arguments were given. */
......@@ -127,7 +127,7 @@ public class blasearch {
// Print results
if(results.size() > 0){
for(int i=(offset); i<(offset+2); i++){
if (i != 0) {
if (i != offset) {
System.out.print(" | ");
}
int count = i + 1;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment