From 9eb58b95962ad5b0c5e59f2e8cf56a148a55b12f Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Fri, 13 Dec 2013 18:45:34 +0100 Subject: [PATCH] Polish Javadoc for ScopedProxyMode --- .../context/annotation/ScopedProxyMode.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/spring-context/src/main/java/org/springframework/context/annotation/ScopedProxyMode.java b/spring-context/src/main/java/org/springframework/context/annotation/ScopedProxyMode.java index 178058270d..9ac372a245 100644 --- a/spring-context/src/main/java/org/springframework/context/annotation/ScopedProxyMode.java +++ b/spring-context/src/main/java/org/springframework/context/annotation/ScopedProxyMode.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2009 the original author or authors. + * Copyright 2002-2013 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. @@ -19,9 +19,9 @@ package org.springframework.context.annotation; /** * Enumerates the various scoped-proxy options. * - *

For a fuller discussion of exactly what a scoped-proxy is, see that - * section of the Spring reference documentation entitled 'Scoped beans as - * dependencies'. + *

For a more complete discussion of exactly what a scoped proxy is, see the + * section of the Spring reference documentation entitled 'Scoped beans as + * dependencies'. * * @author Mark Fisher * @since 2.5 @@ -51,8 +51,8 @@ public enum ScopedProxyMode { INTERFACES, /** - * Create a class-based proxy (requires CGLIB). + * Create a class-based proxy (uses CGLIB). */ - TARGET_CLASS + TARGET_CLASS; }