You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2020/05/17 01:04:05 UTC

[maven-shared-utils] branch master updated: this file is not needed anymore

This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-shared-utils.git


The following commit(s) were added to refs/heads/master by this push:
     new cc9d8f3  this file is not needed anymore
cc9d8f3 is described below

commit cc9d8f3b817e98fc9139c0de9f0865442f7a9029
Author: olivier lamy <ol...@apache.org>
AuthorDate: Sun May 17 11:03:50 2020 +1000

    this file is not needed anymore
    
    Signed-off-by: olivier lamy <ol...@apache.org>
---
 .../maven/shared/utils/io/Java7SupportTest.java    | 41 ----------------------
 1 file changed, 41 deletions(-)

diff --git a/src/test/java/org/apache/maven/shared/utils/io/Java7SupportTest.java b/src/test/java/org/apache/maven/shared/utils/io/Java7SupportTest.java
deleted file mode 100644
index 39c3eb1..0000000
--- a/src/test/java/org/apache/maven/shared/utils/io/Java7SupportTest.java
+++ /dev/null
@@ -1,41 +0,0 @@
-package org.apache.maven.shared.utils.io;
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-import java.io.File;
-
-import org.junit.Test;
-
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertFalse;
-import static org.junit.Assume.assumeThat;
-import static org.hamcrest.CoreMatchers.not;
-
-public class Java7SupportTest
-{
-    @Test
-    public void testIsSymLink()
-        throws Exception
-    {
-        File file = new File( "." );
-        assertFalse( Java7Support.isSymLink( file ) );
-    }
-
-}