You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ta...@apache.org on 2020/06/13 15:51:47 UTC

[myfaces] branch master updated: revert

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

tandraschko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces.git


The following commit(s) were added to refs/heads/master by this push:
     new dfc5b1a  revert
dfc5b1a is described below

commit dfc5b1a507809699bdaa9aae431f28de3870ad09
Author: Thomas Andraschko <ta...@apache.org>
AuthorDate: Sat Jun 13 17:51:39 2020 +0200

    revert
---
 .../extensions/quarkus/showcase/view/NewClass.java | 34 ----------------------
 1 file changed, 34 deletions(-)

diff --git a/extensions/quarkus/showcase/src/main/java/org/apache/myfaces/core/extensions/quarkus/showcase/view/NewClass.java b/extensions/quarkus/showcase/src/main/java/org/apache/myfaces/core/extensions/quarkus/showcase/view/NewClass.java
deleted file mode 100644
index 49b8b7c..0000000
--- a/extensions/quarkus/showcase/src/main/java/org/apache/myfaces/core/extensions/quarkus/showcase/view/NewClass.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
-package org.apache.myfaces.core.extensions.quarkus.showcase.view;
-
-import java.io.BufferedReader;
-import java.io.IOException;
-import java.io.InputStreamReader;
-import java.net.MalformedURLException;
-import java.net.URL;
-import java.net.URLConnection;
-
-/**
- *
- * @author tandraschko
- */
-public class NewClass {
-    
-    public static void main(String[] args) throws IOException
-    {
-        URL yahoo = new URL("http://localhost:8080/file.xhtml");
-        URLConnection yc = yahoo.openConnection();
-        BufferedReader in = new BufferedReader(
-                                new InputStreamReader(
-                                yc.getInputStream()));
-        String inputLine;
-
-        while ((inputLine = in.readLine()) != null) 
-            System.out.println(inputLine);
-        in.close();
-    }
-}