Suppress deprecation warning in StatusResultMatchers
This commit is contained in:
parent
127bc07cda
commit
665251fa2f
|
|
@ -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…
Reference in New Issue