Suppress deprecation warning in StatusResultMatchers

master
Sam Brannen 11 years ago
parent 127bc07cda
commit 665251fa2f
  1. 4
      spring-test/src/main/java/org/springframework/test/web/servlet/result/StatusResultMatchers.java

@ -1,5 +1,5 @@
/*
* Copyright 2002-2012 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.
@ -211,7 +211,9 @@ public class StatusResultMatchers {
/**
* Assert the response status code is {@code HttpStatus.MOVED_TEMPORARILY} (302).
* @see #isFound()
*/
@SuppressWarnings("deprecation")
public ResultMatcher isMovedTemporarily() {
return matcher(HttpStatus.MOVED_TEMPORARILY);
}

Loading…
Cancel
Save