From: Jim Procter Date: Fri, 21 Jun 2013 12:59:53 +0000 (+0100) Subject: JAL-1325 formatting X-Git-Tag: Jalview_2_9~234^2 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=d82ea13f03b0bfa34abc6f133bf651f87591dea9;hp=812faf2c9f5974e29d27292946fd9e427dcae023;p=jalview.git JAL-1325 formatting --- diff --git a/test/jalview/io/StockholmFileTest.java b/test/jalview/io/StockholmFileTest.java index 1338514..4505f16 100644 --- a/test/jalview/io/StockholmFileTest.java +++ b/test/jalview/io/StockholmFileTest.java @@ -147,7 +147,11 @@ public class StockholmFileTest // compare graphGroup or graph properties - needed to verify JAL-1299 assertTrue("Graph type not identical.",aa_original[i].graph==aa_new[i].graph); assertTrue("Visibility not identical.", aa_original[i].visible==aa_new[i].visible); - assertTrue("Threshold line not identical.", aa_original[i].threshold==null ? aa_new[i].threshold==null : aa_original[i].threshold.equals(aa_new[i].threshold)); + assertTrue( + "Threshold line not identical.", + aa_original[i].threshold == null ? aa_new[i].threshold == null + : aa_original[i].threshold + .equals(aa_new[i].threshold)); // graphGroup may differ, but pattern should be the same Integer o_ggrp=new Integer(aa_original[i].graphGroup+2),n_ggrp=new Integer(aa_new[i].graphGroup+2); BitSet orig_g=orig_groups.get(o_ggrp),new_g=new_groups.get(n_ggrp);