Fisheye: Tag b8798e9c46aed1d5aea3df19947bfce63dae44aa refers to a dead (removed) revision in file `Core/Components/src/Core.Components.BruTile/Configurations/BruTileReflectionHelper.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Core/Components/src/Core.Components.BruTile/Configurations/PersistentCacheConfiguration.cs =================================================================== diff -u -r9d44c3e28f65cdcad943813397f7929b854700fb -rb8798e9c46aed1d5aea3df19947bfce63dae44aa --- Core/Components/src/Core.Components.BruTile/Configurations/PersistentCacheConfiguration.cs (.../PersistentCacheConfiguration.cs) (revision 9d44c3e28f65cdcad943813397f7929b854700fb) +++ Core/Components/src/Core.Components.BruTile/Configurations/PersistentCacheConfiguration.cs (.../PersistentCacheConfiguration.cs) (revision b8798e9c46aed1d5aea3df19947bfce63dae44aa) @@ -155,18 +155,12 @@ tileSource = newTileSource; IPersistentCache tileCache = CreateTileCache(); - try - { - TileFetcher = new AsyncTileFetcher(tileSource, - BruTileSettings.MemoryCacheMinimum, - BruTileSettings.MemoryCacheMaximum, - tileCache); - } - catch (NotSupportedException e) - { - throw new CannotReceiveTilesException(Resources.Configuration_InitializeFromTileSource_TileSource_does_not_allow_access_to_provider, e); - } + TileFetcher = new AsyncTileFetcher(tileSource, + BruTileSettings.MemoryCacheMinimum, + BruTileSettings.MemoryCacheMaximum, + tileCache); + Initialized = true; } Index: Core/Components/src/Core.Components.BruTile/Properties/Resources.Designer.cs =================================================================== diff -u -r98b126b6d45b128483be32b5d76285ddfbe5655b -rb8798e9c46aed1d5aea3df19947bfce63dae44aa --- Core/Components/src/Core.Components.BruTile/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 98b126b6d45b128483be32b5d76285ddfbe5655b) +++ Core/Components/src/Core.Components.BruTile/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision b8798e9c46aed1d5aea3df19947bfce63dae44aa) @@ -82,16 +82,6 @@ } /// - /// Looks up a localized string similar to Bron staat het niet toe om toegang te krijgen tot de kaart tegels.. - /// - internal static string Configuration_InitializeFromTileSource_TileSource_does_not_allow_access_to_provider { - get { - return ResourceManager.GetString("Configuration_InitializeFromTileSource_TileSource_does_not_allow_access_to_provid" + - "er", resourceCulture); - } - } - - /// /// Looks up a localized string similar to Een kritieke fout is opgetreden bij het aanmaken van de cache.. /// internal static string PersistentCacheConfiguration_CreateTileCache_Critical_error_while_creating_tile_cache { Index: Core/Components/src/Core.Components.BruTile/Properties/Resources.resx =================================================================== diff -u -r74efc36a4db93f588a262a08735fb1fb0f6c096b -rb8798e9c46aed1d5aea3df19947bfce63dae44aa --- Core/Components/src/Core.Components.BruTile/Properties/Resources.resx (.../Resources.resx) (revision 74efc36a4db93f588a262a08735fb1fb0f6c096b) +++ Core/Components/src/Core.Components.BruTile/Properties/Resources.resx (.../Resources.resx) (revision b8798e9c46aed1d5aea3df19947bfce63dae44aa) @@ -117,9 +117,6 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Bron staat het niet toe om toegang te krijgen tot de kaart tegels. - Een kritieke fout is opgetreden bij het aanmaken van de cache. Fisheye: Tag b8798e9c46aed1d5aea3df19947bfce63dae44aa refers to a dead (removed) revision in file `Core/Components/test/Core.Components.BruTile.Test/Configurations/BruTileReflectionHelperTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Core/Components/test/Core.Components.BruTile.Test/Configurations/PersistentCacheConfigurationTest.cs =================================================================== diff -u -r98b126b6d45b128483be32b5d76285ddfbe5655b -rb8798e9c46aed1d5aea3df19947bfce63dae44aa --- Core/Components/test/Core.Components.BruTile.Test/Configurations/PersistentCacheConfigurationTest.cs (.../PersistentCacheConfigurationTest.cs) (revision 98b126b6d45b128483be32b5d76285ddfbe5655b) +++ Core/Components/test/Core.Components.BruTile.Test/Configurations/PersistentCacheConfigurationTest.cs (.../PersistentCacheConfigurationTest.cs) (revision b8798e9c46aed1d5aea3df19947bfce63dae44aa) @@ -159,35 +159,6 @@ } [Test] - public void InitializeFromTileSource_InvalidTileSource_ThrowCannotReceiveTilesException() - { - // Setup - var mocks = new MockRepository(); - var tileSource = mocks.Stub(); - mocks.ReplayAll(); - - string rootPath = TestHelper.GetScratchPadPath("InitializeFromTileSource_InvalidTileSource_ThrowCannotReceiveTilesException"); - - DoAndCleanupAfter( - () => - { - using (var configuration = new SimplePersistentCacheConfiguration(rootPath)) - { - // Call - TestDelegate call = () => configuration.TestInitializeFromTileSource(tileSource); - - // Assert - string message = Assert.Throws(call).Message; - const string expectedMessage = "Bron staat het niet toe om toegang te krijgen tot de kaart tegels."; - Assert.AreEqual(expectedMessage, message); - } - }, - rootPath); - - mocks.VerifyAll(); - } - - [Test] public void TestInitializeFromTileSource_CreationOfDirectoryNotAllowed_ThrowCannotCreateTileCacheException() { // Setup