Fixed namespaces for newly added type maps

This commit is contained in:
Sergey Baranchenkov 2015-06-21 11:33:36 -07:00
Родитель 42c4133097
Коммит 29b037196f
5 изменённых файлов: 5 добавлений и 6 удалений

Просмотреть файл

@ -73,7 +73,7 @@
<Compile Include="TimeSource.cs" />
<Compile Include="TransformDeserializer.cs" />
<Compile Include="TypeMap\LambdaTypeMap.cs" />
<Compile Include="TypeMap\PartitionableTimestampedTypeMap.cs" />
<Compile Include="TypeMap\PartitionableContravariantTypeMap.cs" />
<Compile Include="TypeMap\SystemClockTypeMap.cs" />
<Compile Include="TypeMap\TimestampedTypeMap.cs" />
<Compile Include="TypeOccurenceAggregator.cs" />

Просмотреть файл

@ -1,6 +1,6 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
namespace System.Reactive.TypeMap
namespace System.Reactive
{
public sealed class LambdaTypeMap<T> : SingleTypeMap<T>
{

Просмотреть файл

@ -1,10 +1,9 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
namespace System.Reactive.TypeMap
namespace System.Reactive
{
using System;
using System.Collections.Generic;
using System.Reactive;
public sealed class PartitionableContravariantTypeMap : IPartitionableTypeMap<Timestamped<object>, Type>
{

Просмотреть файл

@ -1,6 +1,6 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
namespace System.Reactive.TypeMap
namespace System.Reactive
{
public sealed class SystemClockTypeMap<T> : SingleTypeMap<T>
{

Просмотреть файл

@ -1,6 +1,6 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
namespace System.Reactive.TypeMap
namespace System.Reactive
{
public sealed class TimestampedTypeMap<T> : IRootTypeMap<Timestamped<T>, T>
{