Skip to content

Commit

Permalink
Replace references to deprecated API in JavaDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
ralfstx committed Dec 9, 2017
1 parent 550d16a commit 5518c87
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2013, 2016 EclipseSource.
* Copyright (c) 2013, 2017 EclipseSource.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -34,7 +34,7 @@
* <strong>true</strong>, <strong>false</strong>, and <strong>null</strong>.
* <p>
* The literals <strong>true</strong>, <strong>false</strong>, and <strong>null</strong> are
* represented by the constants {@link #TRUE}, {@link #FALSE}, and {@link #NULL}.
* represented by the constants {@link Json#TRUE}, {@link Json#FALSE}, and {@link Json#NULL}.
* </p>
* <p>
* JSON <strong>objects</strong> and <strong>arrays</strong> are represented by the subtypes
Expand All @@ -44,7 +44,7 @@
* <p>
* Instances that represent JSON <strong>numbers</strong>, <strong>strings</strong> and
* <strong>boolean</strong> values can be created using the static factory methods
* {@link #valueOf(String)}, {@link #valueOf(long)}, {@link #valueOf(double)}, etc.
* {@link Json#value(String)}, {@link Json#value(long)}, {@link Json#value(double)}, etc.
* </p>
* <p>
* In order to find out whether an instance of this class is of a certain type, the methods
Expand Down Expand Up @@ -439,7 +439,7 @@ public void writeTo(Writer writer, WriterConfig config) throws IOException {

/**
* Returns the JSON string for this value in its minimal form, without any additional whitespace.
* The result is guaranteed to be a valid input for the method {@link #readFrom(String)} and to
* The result is guaranteed to be a valid input for the method {@link Json#parse(String)} and to
* create a value that is <em>equal</em> to this object.
*
* @return a JSON string that represents this value
Expand Down

0 comments on commit 5518c87

Please sign in to comment.