Facebook
From 111, 9 Years ago, written in Plain Text.
">

A PHP Error was encountered

Severity: Notice

Message: Trying to access array offset on value of type bool

Filename: view/view.php

Line Number: 33

from

A PHP Error was encountered

Severity: Notice

Message: Trying to access array offset on value of type bool

Filename: view/view.php

Line Number: 33

- view diff
Embed
Download Paste or View Raw
Hits: 998
  1. import java.lang.reflect.Method;
  2. import java.lang.reflect.Type;
  3. import java.util.List;
  4. import java.util.Collections;
  5.  
  6.  
  7. public aspect aspekt1 {
  8.         pointcut checkList() :
  9.         execution (* Service.*.*(List)) && args(List);
  10.         void around(List lista) : checkList()   && args(lista){
  11.                
  12.                 if(lista==null){
  13.                         proceed(Collections.EMPTY_LIST);
  14.                 }
  15.                 else{
  16.                         proceed(lista);
  17.                 }
  18.         }
  19. }
  20.