Skip to content

Commit

Permalink
code format with spotless automatic
Browse files Browse the repository at this point in the history
  • Loading branch information
automated changes committed Oct 18, 2023
1 parent f99e4f1 commit 9e966bc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package org.uniprot.core.proteome.impl;

import java.util.Objects;

import org.uniprot.core.impl.StatisticsImpl;
import org.uniprot.core.proteome.ProteomeStatistics;

import java.util.Objects;

public class ProteomeStatisticsImpl extends StatisticsImpl implements ProteomeStatistics {
private static final long serialVersionUID = -8585233468042758658L;
private final long isoformProteinCount;
Expand All @@ -16,7 +16,7 @@ public class ProteomeStatisticsImpl extends StatisticsImpl implements ProteomeSt
}

ProteomeStatisticsImpl() {
this(0, 0,0);
this(0, 0, 0);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package org.uniprot.core.proteome.impl;

import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotEquals;

import org.junit.jupiter.api.Test;

class ProteomeStatisticsImplTest {
public static final int REVIEWED_PROTEIN_COUNT = 98;
public static final int UNREVIEWED_PROTEIN_COUNT = 33;
Expand All @@ -23,8 +23,7 @@ void getCountsAreAccurate() {

@Test
void defaultConstructor() {
ProteomeStatisticsImpl that =
new ProteomeStatisticsImpl();
ProteomeStatisticsImpl that = new ProteomeStatisticsImpl();
assertEquals(new ProteomeStatisticsImpl(0, 0, 0), that);
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
package org.uniprot.core.json.parser.proteome;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.jsontype.NamedType;
import com.fasterxml.jackson.databind.module.SimpleModule;
import java.time.LocalDate;

import org.uniprot.core.CrossReference;
import org.uniprot.core.Database;
import org.uniprot.core.Value;
Expand All @@ -24,7 +23,9 @@
import org.uniprot.core.uniprotkb.taxonomy.Taxonomy;
import org.uniprot.core.uniprotkb.taxonomy.impl.TaxonomyImpl;

import java.time.LocalDate;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.jsontype.NamedType;
import com.fasterxml.jackson.databind.module.SimpleModule;

public class ProteomeJsonConfig extends JsonConfig {
private static ProteomeJsonConfig instance;
Expand Down

0 comments on commit 9e966bc

Please sign in to comment.