Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,6 @@
import java.io.StringWriter;
import java.lang.reflect.Type;

/**
* @deprecated Use {@link Jackson3JsonBuffer}
*/
@Deprecated
class JacksonJsonBuffer implements JsonBuffer, JsonData {
private final TokenBuffer buffer;
private final JacksonJsonpMapper mapper;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,7 @@

/**
* A partial implementation of JSONP's SPI on top of Jackson.
* @deprecated Use {@link Jackson3JsonProvider}
*/
@Deprecated
public class JacksonJsonProvider extends JsonProvider {

private final JacksonJsonpMapper mapper;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@

/**
* A JSONP generator implementation on top of Jackson.
* @deprecated Use {@link Jackson3JsonpGenerator}
*/
@Deprecated
public class JacksonJsonpGenerator implements JsonGenerator {

private final com.fasterxml.jackson.core.JsonGenerator generator;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@

/**
* Translate a Jackson location to a JSONP location.
* @deprecated Use {@link Jackson3JsonpLocation}
*/
@Deprecated
public class JacksonJsonpLocation implements JsonLocation {

private final com.fasterxml.jackson.core.JsonLocation location;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@
import java.lang.reflect.Type;
import java.util.EnumSet;

/**
* @deprecated Use {@link Jackson3JsonpMapper}
*/
@Deprecated
public class JacksonJsonpMapper extends JsonpMapperBase implements BufferingJsonpMapper {

private final JacksonJsonProvider provider;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,7 @@
* moves forward the underlying Jackson parser as Jackson doesn't provide an equivalent method. This means no value
* getter method (e.g. {@link #getInt()} or {@link #getString()} should be called until the next call to {@link #next()}.
* Such calls will throw an {@code IllegalStateException}.
* @deprecated Use {@link Jackson3JsonpParser}
*/
@Deprecated
public class JacksonJsonpParser implements LookAheadJsonParser, BufferingJsonParser {

private final com.fasterxml.jackson.core.JsonParser parser;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@

import java.io.IOException;

@Deprecated
class JacksonUtils {
public static JsonException convertException(IOException ioe) {
if (ioe instanceof com.fasterxml.jackson.core.JsonGenerationException) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,7 @@
/**
* Reads a Jsonp value/object/array from a Jackson parser. The parser's current token should be the start of the
* object (e.g. START_OBJECT, VALUE_NUMBER, etc).
* @deprecated Use {@link Jackson3JsonValueParser}
*/
@Deprecated
class JsonValueParser {
private final JsonProvider systemProvider = JsonpUtils.systemProvider();

Expand Down