Skip to content

Commit

Permalink
Remove extra semicolons at the end of java statements
Browse files Browse the repository at this point in the history
  • Loading branch information
forus committed Jun 21, 2024
1 parent e795449 commit df8f7af
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public void insertRecord( String... fieldValues) {
tempFileWriter.write( "\t" );
tempFileWriter.write( escapeValue(fieldValues[i]) );
}
tempFileWriter.write("\n");;
tempFileWriter.write("\n");

if( rows++ < numDebuggingRowsToPrint ){
StringBuffer sb = new StringBuffer( escapeValue(fieldValues[0]) );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public ImportExtendedMutationData(File mutationFile, int geneticProfileId, Strin
this.mutationFile = mutationFile;
this.geneticProfileId = geneticProfileId;
this.swissprotIsAccession = false;
this.genePanelId = (genePanel == null) ? null : GeneticProfileUtil.getGenePanelId(genePanel);;
this.genePanelId = (genePanel == null) ? null : GeneticProfileUtil.getGenePanelId(genePanel);
this.filteredMutations = filteredMutations;

// create default MutationFilter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ public String getContentType() {

// properties ///////////////////////////////////////////////////////////////

private ServletOutputStream servletOutputStream = null; // new NullServletOutputStream();;
private ServletOutputStream servletOutputStream = null; // new NullServletOutputStream();
private StringWriter myStringWriter = new StringWriter();

public String getOutput(){
Expand Down

0 comments on commit df8f7af

Please sign in to comment.