Skip to content

Commit

Permalink
remove breaking change
Browse files Browse the repository at this point in the history
  • Loading branch information
tanya732 committed Feb 5, 2025
1 parent a9c3c50 commit 5c6f0a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 156 deletions.
154 changes: 0 additions & 154 deletions src/main/java/com/auth0/json/mgmt/logevents/LocationInfo.java

This file was deleted.

4 changes: 2 additions & 2 deletions src/main/java/com/auth0/json/mgmt/logevents/LogEvent.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class LogEvent {
@JsonProperty("user_name")
private String userName;
@JsonProperty("location_info")
private LocationInfo locationInfo;
private Map<String, Object> locationInfo;
@JsonProperty("details")
private Map<String, Object> details;
@JsonProperty("connection")
Expand Down Expand Up @@ -202,7 +202,7 @@ public String getUserName() {
* @return the location info object.
*/
@JsonProperty("location_info")
public LocationInfo getLocationInfo() {
public Map<String, Object> getLocationInfo() {
return locationInfo;
}

Expand Down

0 comments on commit 5c6f0a7

Please sign in to comment.