Skip to content

Commit

Permalink
fixed typo, removed empty test
Browse files Browse the repository at this point in the history
  • Loading branch information
robertroeser committed May 23, 2016
1 parent bdfd8f8 commit 98f96f7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.netflix.hystrix.contrib.reactivesocket;


import com.netflix.hystrix.contrib.reactivesocket.metrics.HystrixCollasperMetricsStream;
import com.netflix.hystrix.contrib.reactivesocket.metrics.HystrixCollapserMetricsStream;
import com.netflix.hystrix.contrib.reactivesocket.metrics.HystrixCommandMetricsStream;
import com.netflix.hystrix.contrib.reactivesocket.metrics.HystrixThreadPoolMetricsStream;
import com.netflix.hystrix.contrib.reactivesocket.requests.HystrixRequestEventsStream;
Expand Down Expand Up @@ -45,7 +45,7 @@ public Observable<Payload> get() {
return Observable.merge(
HystrixCommandMetricsStream.getInstance().get(),
HystrixThreadPoolMetricsStream.getInstance().get(),
HystrixCollasperMetricsStream.getInstance().get());
HystrixCollapserMetricsStream.getInstance().get());
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
import java.io.ByteArrayOutputStream;
import java.util.stream.Stream;

public class HystrixCollasperMetricsStream extends StreamingSupplier<HystrixCollapserMetrics> {
private static HystrixCollasperMetricsStream INSTANCE = new HystrixCollasperMetricsStream();
public class HystrixCollapserMetricsStream extends StreamingSupplier<HystrixCollapserMetrics> {
private static HystrixCollapserMetricsStream INSTANCE = new HystrixCollapserMetricsStream();

private HystrixCollasperMetricsStream() {
private HystrixCollapserMetricsStream() {
super();
}

public static HystrixCollasperMetricsStream getInstance() {
public static HystrixCollapserMetricsStream getInstance() {
return INSTANCE;
}

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import java.nio.ByteBuffer;
import java.util.concurrent.CountDownLatch;

public class HystrixCollasperMetricsStreamTest {
public class HystrixCollapserMetricsStreamTest {

@Test
public void test() throws Exception {
Expand Down

0 comments on commit 98f96f7

Please sign in to comment.