From 5e7811a45d917d6a46f2e9bdabef3804ed6b2676 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sat, 25 Jan 2014 14:03:18 +0100 Subject: [PATCH] Polish Javadoc in XStreamMarshaller --- .../springframework/oxm/xstream/XStreamMarshaller.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-oxm/src/main/java/org/springframework/oxm/xstream/XStreamMarshaller.java b/spring-oxm/src/main/java/org/springframework/oxm/xstream/XStreamMarshaller.java index cffce25ee0..f15313e746 100644 --- a/spring-oxm/src/main/java/org/springframework/oxm/xstream/XStreamMarshaller.java +++ b/spring-oxm/src/main/java/org/springframework/oxm/xstream/XStreamMarshaller.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2013 the original author or authors. + * Copyright 2002-2014 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -253,7 +253,7 @@ public class XStreamMarshaller extends AbstractMarshaller implements Initializin } /** - * Set an alias/type map, consisting of string aliases mapped to classes. + * Set the alias/type map, consisting of string aliases mapped to classes. *

Keys are aliases; values are either {@code Class} instances, or String class names. * @see XStream#alias(String, Class) */ @@ -262,7 +262,7 @@ public class XStreamMarshaller extends AbstractMarshaller implements Initializin } /** - * Sets the aliases by type map, consisting of string aliases mapped to classes. + * Set the aliases by type map, consisting of string aliases mapped to classes. *

Any class that is assignable to this type will be aliased to the same name. * Keys are aliases; values are either {@code Class} instances, or String class names. * @see XStream#aliasType(String, Class) @@ -272,7 +272,7 @@ public class XStreamMarshaller extends AbstractMarshaller implements Initializin } /** - * Set a field alias/type map, consiting of field names. + * Set the field alias/type map, consisting of field names. * @see XStream#aliasField(String, Class, String) */ public void setFieldAliases(Map fieldAliases) {