Skip to content

Commit cd2d21b

Browse files
committed
Make RFC class package private
1 parent dce8b2f commit cd2d21b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • datamodel/openapi/openapi-core-apache/src/main/java/com/sap/cloud/sdk/services/openapi/apache/apiclient

datamodel/openapi/openapi-core-apache/src/main/java/com/sap/cloud/sdk/services/openapi/apache/apiclient/RFC3339DateFormat.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
/**
1717
* Date format according to the <a href="https://www.rfc-editor.org/rfc/rfc3339">RFC3339</a>.
1818
*/
19-
public class RFC3339DateFormat extends DateFormat
19+
class RFC3339DateFormat extends DateFormat
2020
{
2121
private static final long serialVersionUID = 1L;
2222
private static final TimeZone TIMEZONE_Z = TimeZone.getTimeZone("UTC");
@@ -26,7 +26,7 @@ public class RFC3339DateFormat extends DateFormat
2626
/**
2727
* Default constructor
2828
*/
29-
public RFC3339DateFormat()
29+
RFC3339DateFormat()
3030
{
3131
calendar = new GregorianCalendar();
3232
numberFormat = new DecimalFormat();

0 commit comments

Comments
 (0)