refactor: remove unused code (#1985)

This commit is contained in:
Nanne Baars
2024-12-15 13:06:49 +01:00
committed by GitHub
parent 5fc2e0602c
commit 4f8652758c
7 changed files with 3 additions and 161 deletions

View File

@ -1,19 +0,0 @@
package org.owasp.webgoat.container.assignments;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.springframework.web.bind.annotation.RequestMethod;
/** Created by nbaars on 1/14/17. */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface AssignmentPath {
String[] path() default {};
RequestMethod[] method() default {};
String value() default "";
}