Skip to content

Commit 9ae4f95

Browse files
authored
Merge pull request #4102 from square/jw.package-name.2024-03-18
Fix package name
2 parents 2d72b12 + 28225fe commit 9ae4f95

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

retrofit-converters/jaxb3/src/main/java/retrofit2/converter/jaxb/JaxbConverterFactory.java retrofit-converters/jaxb3/src/main/java/retrofit2/converter/jaxb3/JaxbConverterFactory.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package retrofit2.converter.jaxb;
16+
package retrofit2.converter.jaxb3;
1717

1818
import jakarta.xml.bind.JAXBContext;
1919
import jakarta.xml.bind.JAXBException;

retrofit-converters/jaxb3/src/main/java/retrofit2/converter/jaxb/JaxbRequestConverter.java retrofit-converters/jaxb3/src/main/java/retrofit2/converter/jaxb3/JaxbRequestConverter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package retrofit2.converter.jaxb;
16+
package retrofit2.converter.jaxb3;
1717

1818
import jakarta.xml.bind.JAXBContext;
1919
import jakarta.xml.bind.JAXBException;

retrofit-converters/jaxb3/src/main/java/retrofit2/converter/jaxb/JaxbResponseConverter.java retrofit-converters/jaxb3/src/main/java/retrofit2/converter/jaxb3/JaxbResponseConverter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package retrofit2.converter.jaxb;
16+
package retrofit2.converter.jaxb3;
1717

1818
import jakarta.xml.bind.JAXBContext;
1919
import jakarta.xml.bind.JAXBException;
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
@retrofit2.internal.EverythingIsNonNull
2-
package retrofit2.converter.jaxb;
2+
package retrofit2.converter.jaxb3;

retrofit-converters/jaxb3/src/test/java/retrofit2/converter/jaxb/Contact.java retrofit-converters/jaxb3/src/test/java/retrofit2/converter/jaxb3/Contact.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package retrofit2.converter.jaxb;
16+
package retrofit2.converter.jaxb3;
1717

1818
import jakarta.xml.bind.annotation.XmlElement;
1919
import jakarta.xml.bind.annotation.XmlRootElement;

retrofit-converters/jaxb3/src/test/java/retrofit2/converter/jaxb/JaxbConverterFactoryTest.java retrofit-converters/jaxb3/src/test/java/retrofit2/converter/jaxb3/JaxbConverterFactoryTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package retrofit2.converter.jaxb;
16+
package retrofit2.converter.jaxb3;
1717

1818
import static com.google.common.truth.Truth.assertThat;
1919
import static junit.framework.TestCase.fail;

retrofit-converters/jaxb3/src/test/java/retrofit2/converter/jaxb/PhoneNumber.java retrofit-converters/jaxb3/src/test/java/retrofit2/converter/jaxb3/PhoneNumber.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package retrofit2.converter.jaxb;
16+
package retrofit2.converter.jaxb3;
1717

1818
import jakarta.xml.bind.annotation.XmlAttribute;
1919
import jakarta.xml.bind.annotation.XmlElement;

retrofit-converters/jaxb3/src/test/java/retrofit2/converter/jaxb/Type.java retrofit-converters/jaxb3/src/test/java/retrofit2/converter/jaxb3/Type.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package retrofit2.converter.jaxb;
16+
package retrofit2.converter.jaxb3;
1717

1818
enum Type {
1919
OTHER,

0 commit comments

Comments
 (0)