PDFBOX-5300: added migration of COSDocument.getObjects(), as suggested by Jan Luehe
diff --git a/content/3.0/migration.md b/content/3.0/migration.md
index a9447ef..527c6c7 100644
--- a/content/3.0/migration.md
+++ b/content/3.0/migration.md
@@ -207,6 +207,11 @@
The convenience class `org.apache.pdfbox.util.Charsets` has been removed. Please use the java class `java.nio.charset.StandardCharsets` instead.
+### Changes when needing all objects
+
+Instead of using the `COSDocument.getObjects()` to get all objects, use `COSDocument.getXrefTable().keySet()`
+to get all the object keys, and then call `COSDocument.getObjectFromPool()` with these keys.
+
## Changes in Common Functions
### Interactive Forms