Suppress deprecation warning in StatusResultMatchers

This commit is contained in:
Sam Brannen 2013-11-22 12:55:12 +01:00
parent 127bc07cda
commit 665251fa2f
1 changed files with 3 additions and 1 deletions

View File

@ -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);
}