Skip to content

Commit

Permalink
Renamed Classes: Corrected imports by renaming class files to fit cor…
Browse files Browse the repository at this point in the history
…rect name used when referenced
  • Loading branch information
forkimenjeckayang committed Jul 1, 2024
1 parent 495b2f2 commit 941e9a3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import de.adorsys.datasafe.directory.api.types.UserPublicProfile;
import de.adorsys.datasafe.encrypiton.api.types.UserID;
import de.adorsys.datasafe.types.api.context.annotations.RuntimeDelegate;
import de.adorsys.datasafe.types.api.context.overrides.OverridesRegistry;
import lombok.Getter;

import javax.inject.Inject;
Expand All @@ -20,7 +21,7 @@ public class DefaultUserProfileCache implements UserProfileCache {
private final Map<UserID, UserPrivateProfile> privateProfile;

@Inject
public DefaultUserProfileCache(Map<UserID, UserPublicProfile> publicProfile,
public DefaultUserProfileCache(OverridesRegistry registry, Map<UserID, UserPublicProfile> publicProfile,
Map<UserID, UserPrivateProfile> privateProfile) {
this.publicProfile = publicProfile;
this.privateProfile = privateProfile;
Expand Down

0 comments on commit 941e9a3

Please sign in to comment.