Skip to content

Commit

Permalink
Merge pull request Netflix#1502 from zzzvvvxxxd/20170318_delete_unuse…
Browse files Browse the repository at this point in the history
…ful_code

delete unuseful code in HystrixConcurrencyStrategy
  • Loading branch information
mattrjacobs authored Mar 20, 2017
2 parents 710a537 + a57324c commit c1d4bb6
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,9 @@ public ThreadPoolExecutor getThreadPool(final HystrixThreadPoolKey threadPoolKey
}

private static ThreadFactory getThreadFactory(final HystrixThreadPoolKey threadPoolKey) {
ThreadFactory threadFactory = null;
if (!PlatformSpecific.isAppEngineStandardEnvironment()) {
return new ThreadFactory() {
protected final AtomicInteger threadNumber = new AtomicInteger(0);
private final AtomicInteger threadNumber = new AtomicInteger(0);

@Override
public Thread newThread(Runnable r) {
Expand Down

0 comments on commit c1d4bb6

Please sign in to comment.