Skip to content

Commit 7a66df4

Browse files
author
Daniel Warneke
committed
Fixed POM files and removed some unused imports
1 parent 75f4c65 commit 7a66df4

File tree

14 files changed

+2
-41
lines changed

14 files changed

+2
-41
lines changed

build-tools/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@
1010
<version>0.2</version>
1111
</parent>
1212

13-
<groupId>eu.stratosphere</groupId>
1413
<artifactId>build-tools</artifactId>
15-
<version>0.2</version>
1614
<name>build-tools</name>
1715
<packaging>jar</packaging>
1816
</project>

nephele/nephele-server/src/main/java/eu/stratosphere/nephele/multicast/MulticastCluster.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@
2020
import java.util.Iterator;
2121
import java.util.LinkedList;
2222

23-
import eu.stratosphere.nephele.instance.InstanceConnectionInfo;
24-
import eu.stratosphere.nephele.io.channels.ChannelID;
25-
import eu.stratosphere.nephele.taskmanager.bytebuffered.ConnectionInfoLookupResponse;
26-
2723
/**
2824
* This class represents a cluster of hosts within a multicast-tree.
2925
*

nephele/nephele-server/src/main/java/eu/stratosphere/nephele/multicast/MulticastManager.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,14 @@
1919
import java.io.DataInputStream;
2020
import java.io.File;
2121
import java.io.FileInputStream;
22-
import java.io.FileReader;
23-
import java.io.IOException;
2422
import java.io.InputStreamReader;
2523
import java.util.Collections;
2624
import java.util.HashMap;
27-
import java.util.HashSet;
2825
import java.util.Iterator;
2926
import java.util.LinkedList;
3027
import java.util.List;
3128
import java.util.Map;
3229

33-
import javax.swing.plaf.basic.BasicTreeUI.TreeToggleAction;
34-
3530
import org.apache.commons.logging.Log;
3631
import org.apache.commons.logging.LogFactory;
3732

nephele/nephele-server/src/main/java/eu/stratosphere/nephele/taskmanager/runtime/EnvelopeConsumptionLog.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,6 @@ private void addOutstandingEnvelope(final AbstractByteBufferedInputChannel<? ext
240240

241241
void showOustandingEnvelopeLog() {
242242

243-
int dataAvailableCounter = 0;
244-
245243
final int pos = this.outstandingEnvelopesAsIntBuffer.position();
246244
final int limit = this.outstandingEnvelopesAsIntBuffer.limit();
247245

@@ -263,9 +261,6 @@ void showOustandingEnvelopeLog() {
263261

264262
final int channelIndex = getInputChannel(entry);
265263
final boolean dataAvailable = getDataAvailability(entry);
266-
if (dataAvailable) {
267-
++dataAvailableCounter;
268-
}
269264

270265
char ch = (char) (((int) 'A') + channelIndex + (dataAvailable ? 0 : 32));
271266

pact/pact-clients/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@
1010
<version>0.2</version>
1111
</parent>
1212

13-
<groupId>eu.stratosphere</groupId>
1413
<artifactId>pact-clients</artifactId>
15-
<version>0.2</version>
1614
<name>pact-clients</name>
1715

1816
<packaging>jar</packaging>

pact/pact-common/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@
99
<version>0.2</version>
1010
</parent>
1111

12-
<groupId>eu.stratosphere</groupId>
1312
<artifactId>pact-common</artifactId>
14-
<version>0.2</version>
1513
<name>pact-common</name>
1614

1715
<packaging>jar</packaging>

pact/pact-common/src/main/java/eu/stratosphere/pact/common/io/FormatUtil.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,16 @@
1515

1616
package eu.stratosphere.pact.common.io;
1717

18-
import java.io.ByteArrayInputStream;
19-
import java.io.ByteArrayOutputStream;
20-
import java.io.DataInputStream;
21-
import java.io.DataOutputStream;
2218
import java.io.IOException;
2319
import java.net.URI;
2420
import java.net.URISyntaxException;
25-
import java.nio.charset.Charset;
2621

2722
import eu.stratosphere.nephele.configuration.Configuration;
2823
import eu.stratosphere.nephele.fs.BlockLocation;
2924
import eu.stratosphere.nephele.fs.FileInputSplit;
3025
import eu.stratosphere.nephele.fs.FileStatus;
3126
import eu.stratosphere.nephele.fs.FileSystem;
3227
import eu.stratosphere.nephele.fs.Path;
33-
import eu.stratosphere.nephele.io.IOReadableWritable;
3428
import eu.stratosphere.pact.common.util.ReflectionUtil;
3529

3630
/**

pact/pact-common/src/test/java/eu/stratosphere/pact/common/io/SequentialFormatTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,11 @@
3333

3434
import eu.stratosphere.nephele.configuration.Configuration;
3535
import eu.stratosphere.nephele.fs.FileInputSplit;
36-
import eu.stratosphere.nephele.fs.FileSystem;
3736
import eu.stratosphere.nephele.fs.Path;
3837
import eu.stratosphere.pact.common.io.statistics.BaseStatistics;
3938
import eu.stratosphere.pact.common.type.PactRecord;
4039
import eu.stratosphere.pact.common.type.base.PactInteger;
4140
import eu.stratosphere.pact.common.type.base.PactString;
42-
import eu.stratosphere.pact.common.util.ReflectionUtil;
4341

4442
/**
4543
* Tests {@link SequentialInputFormat} and {@link SequentialOutputFormat}.

pact/pact-common/src/test/java/eu/stratosphere/pact/common/io/type/base/parser/DecimalTextLongParserTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package eu.stratosphere.pact.common.io.type.base.parser;
22

3-
import static org.junit.Assert.assertFalse;
43
import static org.junit.Assert.assertTrue;
54

65
import org.junit.Test;
@@ -22,7 +21,7 @@ public void testGetValue() {
2221
@Test
2322
public void testParseField() {
2423

25-
byte[] recBytes = "1234567890123456789|-1234567890123456789|123abc4|".getBytes();
24+
byte[] recBytes = "1234567890123456789|-1234567890123456789|123abc4|".getBytes();
2625

2726
// check valid int
2827
PactLong l = new PactLong();

pact/pact-compiler/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@
1010
<version>0.2</version>
1111
</parent>
1212

13-
<groupId>eu.stratosphere</groupId>
1413
<artifactId>pact-compiler</artifactId>
15-
<version>0.2</version>
1614
<name>pact-compiler</name>
1715

1816
<packaging>jar</packaging>

0 commit comments

Comments
 (0)