mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 11:19:04 +01:00
Android UI for peer moderation.
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package net.sf.briar.api.crypto;
|
||||
|
||||
import static java.lang.annotation.ElementType.FIELD;
|
||||
import static java.lang.annotation.ElementType.PARAMETER;
|
||||
import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
||||
|
||||
@@ -10,6 +11,6 @@ import com.google.inject.BindingAnnotation;
|
||||
|
||||
/** Annotation for injecting the executor for long-running crypto tasks. */
|
||||
@BindingAnnotation
|
||||
@Target({ PARAMETER })
|
||||
@Target({ FIELD, PARAMETER })
|
||||
@Retention(RUNTIME)
|
||||
public @interface CryptoExecutor {}
|
||||
|
||||
@@ -13,7 +13,7 @@ public class RatingChangedEvent extends DatabaseEvent {
|
||||
this.rating = rating;
|
||||
}
|
||||
|
||||
public AuthorId getAuthor() {
|
||||
public AuthorId getAuthorId() {
|
||||
return author;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user