diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/BaseOperationOutcome.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/BaseOperationOutcome.java
index ce4e55a616b..0ff5e9c3b3a 100644
--- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/BaseOperationOutcome.java
+++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/model/base/resource/BaseOperationOutcome.java
@@ -39,21 +39,19 @@ public abstract class BaseOperationOutcome extends BaseResource implements IReso
public abstract BaseIssue getIssueFirstRep();
public static abstract class BaseIssue extends BaseIdentifiableElement implements IResourceBlock {
-
+
public abstract CodeDt getSeverityElement();
-
+
public abstract StringDt getDetailsElement();
public abstract BaseCodingDt getType();
- public abstract BaseIssue addLocation( String theString);
+ public abstract BaseIssue addLocation(String theString);
public abstract BaseIssue setDetails(String theString);
public abstract StringDt getLocationFirstRep();
-
+
}
-
-
}
diff --git a/hapi-fhir-structures-dstu/src/test/java/ca/uhn/fhir/rest/client/ClientTest.java b/hapi-fhir-structures-dstu/src/test/java/ca/uhn/fhir/rest/client/ClientTest.java
index 9e0c8e06914..182b6947e17 100644
--- a/hapi-fhir-structures-dstu/src/test/java/ca/uhn/fhir/rest/client/ClientTest.java
+++ b/hapi-fhir-structures-dstu/src/test/java/ca/uhn/fhir/rest/client/ClientTest.java
@@ -507,7 +507,7 @@ public class ClientTest {
@Test
public void testHistoryWithParams() throws Exception {
-
+
//@formatter:off
final String msg = "
+ This section is still incomplete: Note that HAPI 0.8 has not + yet been released. This section provides details about how to use the + latest SNAPSHOT release, but it will continue to be enhanced as we move towards + the final 0.8 release. +
+ ++ Beginning in HAPI-FHIR 0.8, the main distribution has been split from one + JAR to a set of JAR files. You will need at least two to use HAPI: +
+hapi-fhir-base-[version].jar
file containing the core library.
+ hapi-fhir-structures-dstu-[version].jar
file containing the FHIR model classes
+ for DSTU1 (all contents of this JAR were previously found in hapi-fhir-base).
+ hapi-fhir-structures-dev-[version].jar
. This JAR contains structures for the
+ latest DEV version of FHIR. You may create a client/server which supports either DSTU1 or DEV
+ resources, or both depending on your needs. Note that using DEV resources may introduce
+ incompatibilities with other frameworks however.