Skip to content
This repository was archived by the owner on Aug 18, 2019. It is now read-only.

Commit a586bfb

Browse files
fix missing import
1 parent add52bb commit a586bfb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

code/core/src/main/java/ch/uzh/ifi/seal/jcs_lambda/aspects/CloudAspect.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package ch.uzh.ifi.seal.jcs_lambda.aspects;
22

33
import ch.uzh.ifi.seal.jcs_lambda.annotations.ByReference;
4+
import ch.uzh.ifi.seal.jcs_lambda.annotations.CloudMethod;
45
import ch.uzh.ifi.seal.jcs_lambda.annotations.StartUp;
56
import ch.uzh.ifi.seal.jcs_lambda.cloudprovider.JVMContext;
67
import ch.uzh.ifi.seal.jcs_lambda.cloudprovider.byReference.ByReferenceHandler;
@@ -30,7 +31,7 @@ public class CloudAspect {
3031
private static CloudManager cloudManager = null;
3132

3233
// only pseudo variable, that import optimizer won't remove the startup and ByReference annotation
33-
private static Class [] annotation = new Class[]{ StartUp.class, ByReference.class };
34+
private static Class [] annotation = new Class[]{ StartUp.class, ByReference.class, CloudMethod.class };
3435

3536
/**
3637
* On Startup register all methods with cloud annotation

0 commit comments

Comments
 (0)