This is an automated email from the ASF dual-hosted git repository.
bdelacretaz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-whiteboard.git
The following commit(s) were added to refs/heads/master by this push:
new 3e8abe3 typo
3e8abe3 is described below
commit 3e8abe31b285cc00367b9caa16e9572520e9bd79
Author: Bertrand Delacretaz <[email protected]>
AuthorDate: Mon Jul 2 11:36:49 2018 +0200
typo
---
file-optim/README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/file-optim/README.md b/file-optim/README.md
index f423f07..c0fb585 100644
--- a/file-optim/README.md
+++ b/file-optim/README.md
@@ -87,7 +87,7 @@ Additionally, there are two Sling mdoels for discovering the
optimization inform
## Defining a File Optimizer
-File optimizers are used by the library to optimize resources based on the
file mime type. Each File Optimizer should implement the
[FileOptimizer](src/main/java/org/apache/sling/fileoptim/FileOptimizer.java)
interface, setting the *mime.type* property to the MimeTypes for which the
optimizer is applicable. The [Service
Rankin](https://osgi.org/javadoc/r2/org/osgi/framework/Constants.html#SERVICE_RANKING)
property can be used to override the default File Optimizers.
+File optimizers are used by the library to optimize resources based on the
file mime type. Each File Optimizer should implement the
[FileOptimizer](src/main/java/org/apache/sling/fileoptim/FileOptimizer.java)
interface, setting the *mime.type* property to the MimeTypes for which the
optimizer is applicable. The [Service
Ranking](https://osgi.org/javadoc/r2/org/osgi/framework/Constants.html#SERVICE_RANKING)
property can be used to override the default File Optimizers.
@Component(service = FileOptimizer.class, property = {
FileOptimizer.MIME_TYPE + "=image/jpeg" })
public class DevNullFileOptimizer implements FileOptimizer {