Polishing.

Make sure type used in protected method is visible in defined scope.

See: #4846
This commit is contained in:
Christoph Strobl
2024-12-10 09:52:33 +01:00
parent b43c09d1f4
commit 471a77cbd8

View File

@@ -3261,7 +3261,7 @@ public class MongoTemplate
* @author Thomas Darimont
*/
interface DocumentCallback<T> {
protected interface DocumentCallback<T> {
T doWith(Document object);
}