summaryrefslogtreecommitdiff
path: root/src/main/com/tonicsystems/jarjar/util/JarProcessorChain.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/com/tonicsystems/jarjar/util/JarProcessorChain.java')
-rw-r--r--src/main/com/tonicsystems/jarjar/util/JarProcessorChain.java42
1 files changed, 18 insertions, 24 deletions
diff --git a/src/main/com/tonicsystems/jarjar/util/JarProcessorChain.java b/src/main/com/tonicsystems/jarjar/util/JarProcessorChain.java
index 06ac85d..6360a3f 100644
--- a/src/main/com/tonicsystems/jarjar/util/JarProcessorChain.java
+++ b/src/main/com/tonicsystems/jarjar/util/JarProcessorChain.java
@@ -1,4 +1,4 @@
-/**
+/*
* Copyright 2007 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -18,31 +18,25 @@ package com.tonicsystems.jarjar.util;
import java.io.IOException;
-public class JarProcessorChain implements JarProcessor
-{
- private final JarProcessor[] chain;
+public class JarProcessorChain implements JarProcessor {
+ private final JarProcessor[] chain;
- public JarProcessorChain(JarProcessor[] chain)
- {
- this.chain = chain.clone();
- }
+ public JarProcessorChain(JarProcessor[] chain) {
+ this.chain = chain.clone();
+ }
- /**
- * @param struct
- * @return <code>true</code> if the entry has run the complete chain
- * @throws IOException
- */
- public boolean process(EntryStruct struct) throws IOException
- {
+ /**
+ * @param struct
+ * @return <code>true</code> if the entry has run the complete chain
+ * @throws IOException
+ */
+ public boolean process(EntryStruct struct) throws IOException {
- for (JarProcessor aChain : chain)
- {
- if (!aChain.process(struct))
- {
- return false;
- }
- }
- return true;
+ for (JarProcessor aChain : chain) {
+ if (!aChain.process(struct)) {
+ return false;
+ }
}
+ return true;
+ }
}
-