Skip to content

Commit 8005b55

Browse files
committed
PDFBOX-5660: remove public constructor from non public class
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1924357 13f79535-47bb-0310-9956-ffa450edef68
1 parent 8b489fd commit 8005b55

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fontbox/src/main/java/org/apache/fontbox/ttf/RandomAccessReadUnbufferedDataStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ private static final class RandomAccessReadNonClosingInputStream extends InputSt
149149

150150
private final RandomAccessReadView randomAccessRead;
151151

152-
public RandomAccessReadNonClosingInputStream(RandomAccessReadView randomAccessRead)
152+
RandomAccessReadNonClosingInputStream(RandomAccessReadView randomAccessRead)
153153
{
154154
this.randomAccessRead = randomAccessRead;
155155
}

fontbox/src/test/java/org/apache/fontbox/cff/CFFParserTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ private class PathRunner implements Runnable
237237
{
238238
private final CountDownLatch latch;
239239

240-
public PathRunner(CountDownLatch latch)
240+
PathRunner(CountDownLatch latch)
241241
{
242242
this.latch = latch;
243243
}

0 commit comments

Comments
 (0)