Skip to content
Snippets Groups Projects
Commit 659ff43e authored by tcarver's avatar tcarver
Browse files

restrict method visibility

parent c147991e
No related branches found
No related tags found
No related merge requests found
...@@ -476,7 +476,7 @@ public class Navigator extends JFrame ...@@ -476,7 +476,7 @@ public class Navigator extends JFrame
* first base, otherwise first to last. * first base, otherwise first to last.
* @return The range that matches the pattern or null if there is no match. * @return The range that matches the pattern or null if there is no match.
**/ **/
public static MarkerRange findBasePattern (final BasePattern pattern, private static MarkerRange findBasePattern (final BasePattern pattern,
final EntryGroup entry_group, final EntryGroup entry_group,
final Selection selection, final Selection selection,
final boolean start_at_end, final boolean start_at_end,
...@@ -520,14 +520,11 @@ public class Navigator extends JFrame ...@@ -520,14 +520,11 @@ public class Navigator extends JFrame
* first base, otherwise first to last. * first base, otherwise first to last.
* @return The range that matches the pattern or null if there is no match. * @return The range that matches the pattern or null if there is no match.
**/ **/
public static MarkerRange findAminoAcidSequence (final AminoAcidSequence private static MarkerRange findAminoAcidSequence (final AminoAcidSequence sequence,
sequence, final EntryGroup entry_group,
final EntryGroup
entry_group,
final Selection selection, final Selection selection,
final boolean start_at_end, final boolean start_at_end,
final boolean final boolean search_backwards) {
search_backwards) {
// if start_at_end is false we want to start the search at the selection // if start_at_end is false we want to start the search at the selection
final Marker selection_base = selection.getLowestBaseOfSelection (); final Marker selection_base = selection.getLowestBaseOfSelection ();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment