Skip to content

Commit

Permalink
Fix minor oversight with marshallers doc
Browse files Browse the repository at this point in the history
  • Loading branch information
asoldano authored and ryanemerson committed Feb 6, 2020
1 parent 95f2857 commit 19abfed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
@@ -1,3 +1,3 @@
GlobalConfigurationBuilder builder = new GlobalConfigurationBuilder();
builder.marshaller(org.infinispan.example.marshall.CustomMarshaller.class)
builder.serialization().marshaller(org.infinispan.example.marshall.CustomMarshaller.class)
.addJavaSerialWhiteList("org.infinispan.example.*");
@@ -1,2 +1,2 @@
GlobalConfigurationBuilder builder = new GlobalConfigurationBuilder();
builder.marshaller(JBossUserMarshaller.class);
builder.serialization().marshaller(JBossUserMarshaller.class);
@@ -1,3 +1,3 @@
GlobalConfigurationBuilder builder = new GlobalConfigurationBuilder();
builder.marshaller(JavaSerializationMarshaller.class)
builder.serialization().marshaller(JavaSerializationMarshaller.class)
.addJavaSerialWhiteList("org.infinispan.example.*", "org.infinispan.concrete.SomeClass");

0 comments on commit 19abfed

Please sign in to comment.