A PHP Error was encountered

Severity: 8192

Message: Function create_function() is deprecated

Filename: geshi/geshi.php

Line Number: 4698

Backtrace:

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4698
Function: _error_handler

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4621
Function: _optimize_regexp_list_tokens_to_string

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 1655
Function: optimize_regexp_list

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2029
Function: optimize_keyword_group

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2168
Function: build_parse_cache

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/Process.php
Line: 45
Function: parse_code

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/models/Pastes.php
Line: 517
Function: syntax

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/controllers/Main.php
Line: 693
Function: getPaste

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/index.php
Line: 315
Function: require_once

test - Stikked
From sdafdsaf, 6 Years ago, written in Java.
Embed
  1. dsafsafsdfpackage run;
  2.  
  3. public class ThisSuperTestClass {
  4.  
  5.     class A {
  6.  
  7.         public void doItA() {
  8.             System.out.println("class A : method doItA()");
  9.         }
  10.  
  11.         public void doItB() {
  12.             System.out.println("class A : method doItB()");
  13.         }
  14.     }
  15.  
  16.     class B extends A {
  17.  
  18.         @Override
  19.         public void doItA() {
  20.             System.out.println("class B : method doItA()");
  21.         }
  22.  
  23.         @Override
  24.         public void doItB() {
  25.             super.doItB();
  26.             System.out.println("class B : method doItB()");
  27.         }
  28.     }
  29.  
  30.     class C extends B {
  31.  
  32.         @Override
  33.         public void doItA() {
  34.             System.out.println("class C : method doItA()");
  35.         }
  36.  
  37.         @Override
  38.         public void doItB() {
  39.             super.doItB();
  40.             System.out.println("class C : method doItB()");
  41.         }
  42.     }
  43.  
  44.     public void Test() {
  45.         A a = new A();
  46.         B b = new B();
  47.         C c = new C();
  48.  
  49.         a.doItA();
  50.         b.doItA();
  51.         c.doItA();
  52.  
  53.         newLine();
  54.  
  55.         a.doItB();
  56.         newLine();
  57.         b.doItB();
  58.         newLine();
  59.         c.doItB();
  60.     }
  61.  
  62.     public static void main(String[] args) {
  63.         System.out.println("\nThis & Super Test Class\n");
  64.  
  65.         ThisSuperTestClass t = new ThisSuperTestClass();
  66.        
  67.         t.Test();
  68.        
  69.         System.out.println("\nThat's it!\n");
  70.     }
  71.  
  72.     public static void newLine() {
  73.         System.out.println();
  74.     }
  75. }
  76.  

Replies to test rss

Title Name Language When
Re: test sdafdsaf java 6 Years ago.