Skip to content

Commit 60474f0

Browse files
Update Java comment to remind the user to comment out the default url when changing to EU
1 parent e789167 commit 60474f0

File tree

106 files changed

+106
-106
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+106
-106
lines changed

Java/Complex Flow Examples/DecryptAddReencrypt.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class DecryptAddReencrypt {
2020
private static final String API_URL = "https://api.pdfrest.com";
2121

2222
// For GDPR compliance and enhanced performance for European users, you can switch to the EU-based
23-
// service by uncommenting the URL below.
23+
// service by commenting out the URL above and uncommenting the URL below.
2424
// For more information visit https://pdfrest.com/pricing#how-do-eu-gdpr-api-calls-work
2525
// private static final String API_URL = "https://eu-api.pdfrest.com";
2626

Java/Complex Flow Examples/MergeDifferentFileTypes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class MergeDifferentFileTypes {
2323
private static final String API_URL = "https://api.pdfrest.com";
2424

2525
// For GDPR compliance and enhanced performance for European users, you can switch to the EU-based
26-
// service by uncommenting the URL below.
26+
// service by commenting out the URL above and uncommenting the URL below.
2727
// For more information visit https://pdfrest.com/pricing#how-do-eu-gdpr-api-calls-work
2828
// private static final String API_URL = "https://eu-api.pdfrest.com";
2929

Java/Complex Flow Examples/OcrWithExtractText.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class OcrWithExtractText {
2020
private static final String API_URL = "https://api.pdfrest.com";
2121

2222
// For GDPR compliance and enhanced performance for European users, you can switch to the EU-based
23-
// service by uncommenting the URL below.
23+
// service by commenting out the URL above and uncommenting the URL below.
2424
// For more information visit https://pdfrest.com/pricing#how-do-eu-gdpr-api-calls-work
2525
// private static final String API_URL = "https://eu-api.pdfrest.com";
2626

Java/Complex Flow Examples/PDFA3bWithAttachment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class PDFA3bWithAttachment {
2121
private static final String API_URL = "https://api.pdfrest.com";
2222

2323
// For GDPR compliance and enhanced performance for European users, you can switch to the EU-based
24-
// service by uncommenting the URL below.
24+
// service by commenting out the URL above and uncommenting the URL below.
2525
// For more information visit https://pdfrest.com/pricing#how-do-eu-gdpr-api-calls-work
2626
// private static final String API_URL = "https://eu-api.pdfrest.com";
2727

Java/Complex Flow Examples/PreserveWordDocument.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class PreserveWordDocument {
1818
private static final String API_URL = "https://api.pdfrest.com";
1919

2020
// For GDPR compliance and enhanced performance for European users, you can switch to the EU-based
21-
// service by uncommenting the URL below.
21+
// service by commenting out the URL above and uncommenting the URL below.
2222
// For more information visit https://pdfrest.com/pricing#how-do-eu-gdpr-api-calls-work
2323
// private static final String API_URL = "https://eu-api.pdfrest.com";
2424

Java/Complex Flow Examples/ProtectedWatermark.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class ProtectedWatermark {
1818
private static final String API_URL = "https://api.pdfrest.com";
1919

2020
// For GDPR compliance and enhanced performance for European users, you can switch to the EU-based
21-
// service by uncommenting the URL below.
21+
// service by commenting out the URL above and uncommenting the URL below.
2222
// For more information visit https://pdfrest.com/pricing#how-do-eu-gdpr-api-calls-work
2323
// private static final String API_URL = "https://eu-api.pdfrest.com";
2424

Java/Complex Flow Examples/RedactPreviewAndFinalize.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class RedactPreviewAndFinalize {
1919
private static final String API_URL = "https://api.pdfrest.com";
2020

2121
// For GDPR compliance and enhanced performance for European users, you can switch to the EU-based
22-
// service by uncommenting the URL below.
22+
// service by commenting out the URL above and uncommenting the URL below.
2323
// For more information visit https://pdfrest.com/pricing#how-do-eu-gdpr-api-calls-work
2424
// private static final String API_URL = "https://eu-api.pdfrest.com";
2525

Java/Endpoint Examples/JSON Payload/BatchDelete.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class BatchDelete {
1010
private static final String API_URL = "https://api.pdfrest.com";
1111

1212
// For GDPR compliance and enhanced performance for European users, you can switch to the EU-based
13-
// service by uncommenting the URL below.
13+
// service by commenting out the URL above and uncommenting the URL below.
1414
// For more information visit https://pdfrest.com/pricing#how-do-eu-gdpr-api-calls-work
1515
// private static String API_URL = "https://eu-api.pdfrest.com"
1616

Java/Endpoint Examples/JSON Payload/Bmp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class Bmp {
1212
private static final String API_URL = "https://api.pdfrest.com";
1313

1414
// For GDPR compliance and enhanced performance for European users, you can switch to the EU-based
15-
// service by uncommenting the URL below.
15+
// service by commenting out the URL above and uncommenting the URL below.
1616
// For more information visit https://pdfrest.com/pricing#how-do-eu-gdpr-api-calls-work
1717
// private static final String API_URL = "https://eu-api.pdfrest.com";
1818

Java/Endpoint Examples/JSON Payload/CompressedPDF.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class CompressedPDF {
1212
private static final String API_URL = "https://api.pdfrest.com";
1313

1414
// For GDPR compliance and enhanced performance for European users, you can switch to the EU-based
15-
// service by uncommenting the URL below.
15+
// service by commenting out the URL above and uncommenting the URL below.
1616
// For more information visit https://pdfrest.com/pricing#how-do-eu-gdpr-api-calls-work
1717
// private static final String API_URL = "https://eu-api.pdfrest.com";
1818

0 commit comments

Comments
 (0)