From 57fa09b80d0b50199db857fda36fab4fb19ed1fb Mon Sep 17 00:00:00 2001 From: Issam El-atif Date: Mon, 17 Jun 2019 11:26:49 +0200 Subject: [PATCH] Fix typo See gh-23142 --- .../aop/aspectj/annotation/AspectMetadata.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-aop/src/main/java/org/springframework/aop/aspectj/annotation/AspectMetadata.java b/spring-aop/src/main/java/org/springframework/aop/aspectj/annotation/AspectMetadata.java index 53af36d4b6..a3e73ed063 100644 --- a/spring-aop/src/main/java/org/springframework/aop/aspectj/annotation/AspectMetadata.java +++ b/spring-aop/src/main/java/org/springframework/aop/aspectj/annotation/AspectMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2016 the original author or authors. + * Copyright 2002-2019 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. @@ -95,7 +95,7 @@ public class AspectMetadata implements Serializable { throw new IllegalArgumentException("Class '" + aspectClass.getName() + "' is not an @AspectJ aspect"); } if (ajType.getDeclarePrecedence().length > 0) { - throw new IllegalArgumentException("DeclarePrecendence not presently supported in Spring AOP"); + throw new IllegalArgumentException("DeclarePrecedence not presently supported in Spring AOP"); } this.aspectClass = ajType.getJavaClass(); this.ajType = ajType;