From 1118360330a88dd1fd8f7ae7780bc6058e513810 Mon Sep 17 00:00:00 2001
From: Jakob Heher <jakob.heher@iaik.tugraz.at>
Date: Thu, 24 Mar 2022 13:01:22 +0100
Subject: remove stray non-nls tags

---
 .../java/at/asit/pdfover/gui/workflow/states/PositioningState.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow')

diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/states/PositioningState.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/states/PositioningState.java
index 401f2cd9..83a9ac79 100644
--- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/states/PositioningState.java
+++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/workflow/states/PositioningState.java
@@ -71,7 +71,7 @@ public class PositioningState extends State {
 
 	private PDFFile getPDFDocument() throws IOException {
 		PDFFile pdf = null;
-		RandomAccessFile rafile = new RandomAccessFile(getStateMachine().getStatus().getDocument(), "r"); //$NON-NLS-1$
+		RandomAccessFile rafile = new RandomAccessFile(getStateMachine().getStatus().getDocument(), "r");
 		FileChannel chan = rafile.getChannel();
 		ByteBuffer buf = chan
 				.map(FileChannel.MapMode.READ_ONLY, 0, chan.size());
@@ -82,7 +82,7 @@ public class PositioningState extends State {
 			pdf = new PDFFile(buf);
 		}
 		catch (PDFAuthenticationFailureException e) {
-			throw new IOException(Messages.getString("error.PDFPwdProtected"), e); //$NON-NLS-1$
+			throw new IOException(Messages.getString("error.PDFPwdProtected"), e);
 		}
 		catch (IOException e) {
 			throw new IOException(Messages.getString("error.MayNotBeAPDF"), e); //$NON-NLS-1$
@@ -97,7 +97,7 @@ public class PositioningState extends State {
 		if (this.positionComposite == null) {
 			this.positionComposite =
 					stateMachine.getGUIProvider().createComposite(PositioningComposite.class, SWT.RESIZE, this);
-			log.debug("Displaying " +  stateMachine.getStatus().getDocument()); //$NON-NLS-1$
+			log.debug("Displaying " +  stateMachine.getStatus().getDocument());
 			this.positionComposite.displayDocument(document);
 		}
 		// Update possibly changed values
-- 
cgit v1.2.3