Skip to content

Commit 72dd13f

Browse files
committed
PDFBOX-5660: Sonar fix
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1925052 13f79535-47bb-0310-9956-ffa450edef68
1 parent ce12e20 commit 72dd13f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

xmpbox/src/test/java/org/apache/xmpbox/schema/SchemaTester.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
import org.apache.xmpbox.type.AbstractTypeTester;
3939
import org.apache.xmpbox.type.Types;
4040

41-
class SchemaTester extends AbstractTypeTester {
42-
41+
class SchemaTester extends AbstractTypeTester
42+
{
4343
private final XMPMetadata metadata;
4444
private final Class<?> schemaClass;
4545
private final String fieldName;
@@ -201,7 +201,7 @@ public void testRandomPropertySetterSimple() throws ReflectiveOperationException
201201
}
202202
}
203203

204-
private void internalTestPropertySetterSimple() throws IllegalAccessException, ReflectiveOperationException
204+
private void internalTestPropertySetterSimple() throws ReflectiveOperationException
205205
{
206206
if (cardinality != Cardinality.Simple)
207207
{
@@ -232,7 +232,7 @@ public void testPropertySetterInArray() throws ReflectiveOperationException
232232
internalTestPropertySetterInArray();
233233
}
234234

235-
public void testRandomPropertySetterInArray() throws IllegalAccessException, ReflectiveOperationException
235+
public void testRandomPropertySetterInArray() throws ReflectiveOperationException
236236
{
237237
initializeSeed(new Random());
238238
for (int i=0; i < RAND_LOOP_COUNT;i++)
@@ -241,7 +241,7 @@ public void testRandomPropertySetterInArray() throws IllegalAccessException, Ref
241241
}
242242
}
243243

244-
private void internalTestPropertySetterInArray() throws IllegalAccessException, ReflectiveOperationException
244+
private void internalTestPropertySetterInArray() throws ReflectiveOperationException
245245
{
246246
if (cardinality == Cardinality.Simple)
247247
{

0 commit comments

Comments
 (0)