Skip to content

Commit

Permalink
Sonar cloud issues
Browse files Browse the repository at this point in the history
  • Loading branch information
fugerit79 committed Oct 7, 2023
1 parent 773f901 commit 2d79050
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 @@ -4,6 +4,6 @@

public interface ParentElement {

public void add( Element element ) throws Exception;
public void add( Element element );

}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public PhraseParent( Phrase phrase ) {
/* (non-Javadoc)
* @see org.fugerit.java.doc.mod.itext.ParentElement#add(com.lowagie.text.Element)
*/
public void add(Element element) throws Exception {
public void add(Element element) {
this.phrase.add( element );
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import com.lowagie.text.pdf.PdfOutline;
import com.lowagie.text.pdf.PdfWriter;

public class PocIndex {
public class TestPocIndex {

private static final String VERSION = "002";

Expand Down

0 comments on commit 2d79050

Please sign in to comment.