Skip to content

Commit

Permalink
chore: update code to v4.1.2 (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
anssari1 authored Jun 3, 2024
1 parent 76fce22 commit 8bd5074
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 131 deletions.
4 changes: 2 additions & 2 deletions code/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

<groupId>com.expediagroup</groupId>
<artifactId>rapid-sdk</artifactId>
<version>3.2.2</version>
<version>4.1.2</version>
<name>EG Rapid SDK for Java</name>
<description>EG Rapid SDK v3.2.2</description>
<description>EG Rapid SDK v4.1.2</description>
<url>https://github.com/ExpediaGroup/rapid-java-sdk</url>
<inceptionYear>2022</inceptionYear>
<packaging>jar</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ open class Response<T>(
)
}

override fun toString(): String = "Response(statusCode=$statusCode, data=$data, headers=$headers)"
override fun toString() = "Response(statusCode=$statusCode, data=$data, headers=$headers)"

@Deprecated("Use getData() instead", replaceWith = ReplaceWith("getData()"))
fun getBody() = data
}

class EmptyResponse(
Expand Down
Loading

0 comments on commit 8bd5074

Please sign in to comment.