mirror of
https://github.com/jlengrand/github-api.git
synced 2026-03-22 15:50:29 +00:00
17 lines
380 B
Java
17 lines
380 B
Java
package org.kohsuke.github;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
/**
|
|
* Ignores this field for {@link GHObject#toString()}
|
|
*
|
|
* @author Kohsuke Kawaguchi
|
|
*/
|
|
@Target(ElementType.FIELD)
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@interface SkipFromToString {
|
|
}
|