Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Unnecessary imports removed." #349

Merged
merged 1 commit into from
Jan 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/main/java/DNAnalyzer/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
import picocli.CommandLine;

import io.sentry.Sentry;
import io.sentry.ITransaction;
import io.sentry.Sentry;
import io.sentry.SpanStatus;

/**
* Main Class for the DNAnalyzer program.
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/DNAnalyzer/core/Properties.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,13 @@

package DNAnalyzer.core;

import static DNAnalyzer.core.DNAAnalysis.countBasePairs;

import java.io.PrintStream;
import java.util.Arrays;
import java.util.List;

import DNAnalyzer.core.DNAAnalysis.BasePairIndex;
import DNAnalyzer.data.aminoAcid.AminoAcid;
import DNAnalyzer.data.aminoAcid.AminoAcidFactory;

Expand Down
2 changes: 2 additions & 0 deletions src/main/java/DNAnalyzer/utils/traits/Traits.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

package DNAnalyzer.utils.traits;

import java.util.HashMap;

public class Traits {
/**
* Check if the DNA sequence has at least three distinct occurrences of the
Expand Down