Skip to content

Commit

Permalink
Minor improvements.
Browse files Browse the repository at this point in the history
  • Loading branch information
nmihajlovski committed May 7, 2015
1 parent 4b4a7cf commit 4b5e657
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
@@ -1,9 +1,5 @@
package org.rapidoid.activity;

import org.rapidoid.annotation.Authors;
import org.rapidoid.annotation.Since;
import org.rapidoid.log.Log;

/*
* #%L
* rapidoid-activity
Expand All @@ -24,6 +20,11 @@
* #L%
*/

import org.rapidoid.annotation.Authors;
import org.rapidoid.annotation.Since;
import org.rapidoid.log.Log;


@Authors("Nikolche Mihajlovski")
@Since("2.0.0")
public abstract class AbstractThreadActivity<T> extends LifecycleActivity<T> implements Runnable {
Expand Down
Expand Up @@ -36,7 +36,7 @@

@CanRead({ ANYBODY })
@CanChange({ ANYBODY })
class AbstractEntity {
class AbstrEntity {

@CanChange({})
public long id;
Expand Down Expand Up @@ -71,7 +71,7 @@ class Comment {

@CanRead({ OWNER, SHARED_WITH, "OTHER_ROLE" })
@CanChange({ OWNER })
class Issue extends AbstractEntity {
class Issue extends AbstrEntity {

public String title;

Expand Down
3 changes: 1 addition & 2 deletions rapidoid-utils/src/main/java/org/rapidoid/util/AppCtx.java
Expand Up @@ -35,8 +35,7 @@ public class AppCtx {

private Classes classes;

private AppCtx() {
}
private AppCtx() {}

private static AppCtx ctx() {
AppCtx ctx = CTXS.get();
Expand Down

0 comments on commit 4b5e657

Please sign in to comment.