[java-opensaml COMMIT] /trunk/opensaml-storage-api/src/main/java/org/opensaml/storage/StorageService.java

noreply at shibboleth.net noreply at shibboleth.net
Mon Aug 18 20:02:40 EDT 2014


Author: scantor
Date: Mon Aug 18 20:02:40 2014
New Revision: 4003

URL: http://svn.shibboleth.net/view/java-opensaml?rev=4003&view=rev
Log:
Missing final keyword.

Modified:
    trunk/opensaml-storage-api/src/main/java/org/opensaml/storage/StorageService.java

Modified: trunk/opensaml-storage-api/src/main/java/org/opensaml/storage/StorageService.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-storage-api/src/main/java/org/opensaml/storage/StorageService.java?rev=4003&r1=4002&r2=4003&view=diff
==============================================================================
--- trunk/opensaml-storage-api/src/main/java/org/opensaml/storage/StorageService.java (original)
+++ trunk/opensaml-storage-api/src/main/java/org/opensaml/storage/StorageService.java Mon Aug 18 20:02:40 2014
@@ -69,7 +69,7 @@
      * @throws IOException  if fatal errors occur in the insertion process
      */
     public boolean create(@Nonnull @NotEmpty final String context, @Nonnull @NotEmpty final String key,
-            @Nonnull @NotEmpty final String value, @Nullable @Positive Long expiration) throws IOException;
+            @Nonnull @NotEmpty final String value, @Nullable @Positive final Long expiration) throws IOException;
 
     /**
      * Creates a new record in the store with an expiration, using a custom serialization



More information about the commits mailing list